We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aafeb4b commit 1f1e55fCopy full SHA for 1f1e55f
.ci/script.bash
@@ -7,17 +7,17 @@ set -o errexit
7
# Standard argument parsing, example: install-package --branch=master --package=ros_robot
8
for i in "$@"
9
do
10
- case $i in
+ case ${i} in
11
* )
12
# unknown option
13
- if [[ -n "$i" ]]
+ if [[ -n "${i}" ]]
14
then
15
- echo -e "\e[35m\e[1mUnknown input argument '$i'. Check CI yaml file\e[0m"
+ echo -e "\e[35m\e[1mUnknown input argument '${i}'. Check CI yaml file\e[0m"
16
exit 1
17
fi ;;
18
esac
19
shift
20
done
21
22
-echo -e "\e[35m\e[1m tue-make-documentation --no-status\e[0m"
+echo -e "\e[35m\e[1mtue-make-documentation --no-status\e[0m"
23
docker exec -t tue-env bash -c 'source ~/.bashrc; tue-make-documentation --no-status'
0 commit comments