Check that the "bootstrap" and "clean" subcommands are run in the project dir v0.1.0
authorAntonio Ospite <ao2@ao2.it>
Mon, 18 Dec 2017 15:44:37 +0000 (16:44 +0100)
committerAntonio Ospite <ao2@ao2.it>
Mon, 18 Dec 2017 15:44:37 +0000 (16:44 +0100)
libexec/bootstrap.sh
libexec/clean.sh

index 6d26c2e..422fafe 100755 (executable)
@@ -52,6 +52,8 @@ do
   shift
 done
 
+[ -f "bootstrap.conf" ] || { echo "Aborting, run this command from the Drupal project directory." 1>&2; exit 1; }
+
 # shellcheck disable=SC1091
 . bootstrap.conf
 
index cd33b60..b1b4c16 100755 (executable)
@@ -43,6 +43,8 @@ do
   shift
 done
 
+[ -f "bootstrap.conf" ] || { echo "Aborting, run this command from the Drupal project directory." 1>&2; exit 1; }
+
 CONFIRMATION_STRING="YESIAMSURE"
 
 echo "WARNING! This removes any files in the config/ web/ and vendor/ directories."