Skip to content

Commit 1f1e55f

Browse files
(CI) update styling
1 parent aafeb4b commit 1f1e55f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.ci/script.bash

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ set -o errexit
77
# Standard argument parsing, example: install-package --branch=master --package=ros_robot
88
for i in "$@"
99
do
10-
case $i in
10+
case ${i} in
1111
* )
1212
# unknown option
13-
if [[ -n "$i" ]]
13+
if [[ -n "${i}" ]]
1414
then
15-
echo -e "\e[35m\e[1mUnknown input argument '$i'. Check CI yaml file\e[0m"
15+
echo -e "\e[35m\e[1mUnknown input argument '${i}'. Check CI yaml file\e[0m"
1616
exit 1
1717
fi ;;
1818
esac
1919
shift
2020
done
2121

22-
echo -e "\e[35m\e[1m tue-make-documentation --no-status\e[0m"
22+
echo -e "\e[35m\e[1mtue-make-documentation --no-status\e[0m"
2323
docker exec -t tue-env bash -c 'source ~/.bashrc; tue-make-documentation --no-status'

0 commit comments

Comments
 (0)