File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -63,16 +63,16 @@ script:
63
63
*) DOCKER=$TARGET ;;
64
64
esac;
65
65
if [ -n "$DOCKER" ]; then
66
- bash ci/build-run-docker.sh "$DOCKER" "$TARGET" "$SKIP_TESTS";
66
+ sh ci/build-run-docker.sh "$DOCKER" "$TARGET" "$SKIP_TESTS";
67
67
else
68
- PATH="$HOME/rust/bin:$PATH" bash ci/run.sh;
68
+ PATH="$HOME/rust/bin:$PATH" sh ci/run.sh;
69
69
fi
70
70
- if [ "${TRAVIS_OS_NAME}" = linux ]; then
71
71
shellcheck -e SC1090 -- rustup-init.sh ci/*.sh;
72
72
fi
73
73
74
74
before_deploy :
75
- - bash ci/prepare-deploy-travis.sh
75
+ - sh ci/prepare-deploy-travis.sh
76
76
77
77
deploy :
78
78
- provider : s3
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ SKIP_TESTS="$3"
16
16
17
17
travis_fold start " fetch.image.${TARGET} "
18
18
travis_time_start
19
- travis_do_cmd bash ci/fetch-rust-docker.sh " $TARGET "
19
+ travis_do_cmd sh ci/fetch-rust-docker.sh " $TARGET "
20
20
travis_time_finish
21
21
travis_fold end " fetch.image.${TARGET} "
22
22
@@ -45,7 +45,7 @@ docker run \
45
45
--tty \
46
46
--init \
47
47
" $DOCKER " \
48
- -c ' PATH="$PATH":/travis-rust/bin exec bash ci/run.sh'
48
+ -c ' PATH="$PATH":/travis-rust/bin exec sh ci/run.sh'
49
49
50
50
# check that rustup-init was built with ssl support
51
51
# see https://github.com/rust-lang/rustup.rs/issues/1051
You can’t perform that action at this time.
0 commit comments