Skip to content

Commit 8c9a89f

Browse files
committed
test.
1 parent 829d07a commit 8c9a89f

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ job-test: &job-test
3030
sudo ldconfig
3131
echo "export LD_LIBRARY_PATH=/usr/local/lib" >> $BASH_ENV
3232
33+
- run:
34+
name: Setup composer.json
35+
command: |
36+
rm composer.json
37+
mv composer.dist.json composer.json
38+
3339
- run:
3440
name: Assemble the codebase
3541
command: .devtools/assemble.sh

.devtools/start.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ echo "==============================="
3737
echo
3838

3939
info "Stopping previously started services, if any."
40+
# shellcheck disable=SC2009
4041
kill -SIGKILL "$(ps aux | grep 'php -S' | grep -v grep | awk '{print $2}')" >/dev/null 2>&1 || true
4142

4243
info "Starting the PHP webserver."

.devtools/stop.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ echo "==============================="
2424
echo
2525

2626
info "Stopping previously started services, if any."
27+
# shellcheck disable=SC2009
2728
kill -SIGKILL "$(ps aux | grep 'php -S' | grep -v grep | awk '{print $2}')" >/dev/null 2>&1 || true
2829
sleep 1
2930
pass "Services stopped."

0 commit comments

Comments
 (0)