Skip to content

Commit 96de4a7

Browse files
committed
REL-0.10 Be more verbose during travis run
1 parent 383f737 commit 96de4a7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/00.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ CWD="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
2020
###
2121
RAND_DIR="$( mktemp -d )"
2222
RAND_NAME="$( get_random_name )"
23-
echo "hello world" > "${RAND_DIR}/index.html"
23+
run "echo \"hello world\" > ${RAND_DIR}/index.html"
2424

2525

2626
###
@@ -45,7 +45,7 @@ run "docker run -d --rm \
4545
###
4646
### Tests
4747
###
48-
sleep 5
48+
run "sleep 5"
4949
run "docker ps"
5050
run "docker logs ${RAND_NAME}"
5151
run "curl localhost"

.ci/01.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ CWD="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
2121
RAND_DIR="$( mktemp -d )"
2222
RAND_NAME1="$( get_random_name )"
2323
RAND_NAME2="$( get_random_name )"
24-
echo "<?php echo 'hello world php';" > "${RAND_DIR}/index.php"
24+
run "echo \"<?php echo 'hello world php';\" > ${RAND_DIR}/index.php"
2525

2626

2727
###
@@ -57,7 +57,7 @@ run "docker run -d --rm \
5757
###
5858
### Tests
5959
###
60-
sleep 5
60+
run "sleep 5"
6161
run "docker ps"
6262
run "docker logs ${RAND_NAME1}"
6363
run "docker logs ${RAND_NAME2}"

0 commit comments

Comments
 (0)