fix(core): fatal error when trying to install extensions with no export/install/remove scripts
This commit is contained in:
parent
820c14a2f1
commit
57e356205b
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ if [[ ( $2 == "-i" ) || ( $2 == "-install" ) ]]; then VCMD="y"
|
|||
fi
|
||||
|
||||
# Validate custom script paths.
|
||||
if [[ $F_hasInstallScript || $F_hasRemovalScript || $F_hasExportScript ]]; then
|
||||
if [[ $F_hasInstallScript == true || $F_hasRemovalScript == true || $F_hasExportScript == true ]]; then
|
||||
if [[ $data_directory == "" ]]; then rm -R ".blueprint/tmp/$n"; throw 'scriptsNoDataDir'; fi
|
||||
|
||||
if [[ $F_hasInstallScript == true ]] && [[ ! -f ".blueprint/tmp/$n/$data_directory/install.sh" ]] ||
|
||||
|
|
Loading…
Reference in a new issue