Browse Source

check for composer dependencies installed to continue

PHP-GTK3
yggverse 4 months ago
parent
commit
ea13127100
  1. 5
      INSTALL.sh

5
INSTALL.sh

@ -60,6 +60,11 @@ cd $DIR_APP @@ -60,6 +60,11 @@ cd $DIR_APP
composer update
## Check composer dependencies received to continue
if [ ! -d "$DIR_APP/vendor" ]; then
echo "Could not get composer dependencies" && exit
fi
# Build PHP-SRC
## Get latest sources

Loading…
Cancel
Save