]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/startdaemons.sh
Merge branch 'rewrites-nightly/type-hints-asserts' into nightly
[quix0rs-gnu-social.git] / scripts / startdaemons.sh
index 7c92f9f45940dbe53a85177e7085b6d982128ae9..c4d86053e92b09d92d26265b292a29d6074ff6fc 100755 (executable)
@@ -35,12 +35,12 @@ if [ $# -gt 1 ]; then
 fi
 
 DIR=`dirname $0`
-DAEMONS=`php $DIR/getvaliddaemons.php $ARGSG`
+DAEMONS=`$DIR/getvaliddaemons.php $ARGSG`
 
 for f in $DAEMONS; do
 
-         echo "Starting $f..."
-        php $f $ARGSD
-        echo "DONE."
+    echo "Starting $f..."
+    php $f $ARGSD
+    echo "DONE."
 
 done