File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,12 @@ job-test: &job-test
30
30
sudo ldconfig
31
31
echo "export LD_LIBRARY_PATH=/usr/local/lib" >> $BASH_ENV
32
32
33
+ - run :
34
+ name : Setup composer.json
35
+ command : |
36
+ rm composer.json
37
+ mv composer.dist.json composer.json
38
+
33
39
- run :
34
40
name : Assemble the codebase
35
41
command : .devtools/assemble.sh
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ echo "==============================="
37
37
echo
38
38
39
39
info " Stopping previously started services, if any."
40
+ # shellcheck disable=SC2009
40
41
kill -SIGKILL " $( ps aux | grep ' php -S' | grep -v grep | awk ' {print $2}' ) " > /dev/null 2>&1 || true
41
42
42
43
info " Starting the PHP webserver."
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ echo "==============================="
24
24
echo
25
25
26
26
info " Stopping previously started services, if any."
27
+ # shellcheck disable=SC2009
27
28
kill -SIGKILL " $( ps aux | grep ' php -S' | grep -v grep | awk ' {print $2}' ) " > /dev/null 2>&1 || true
28
29
sleep 1
29
30
pass " Services stopped."
You can’t perform that action at this time.
0 commit comments