Skip to content

Commit

Permalink
Resolve all symbolic links before starting ci_main.sh from run_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-luedtke committed Mar 19, 2021
1 parent 5664d2a commit bfc68c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion industrial_ci/scripts/run_ci
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ else
ci_dir=$(python2 -c "import rospkg; print rospkg.RosPack().get_path('industrial_ci')" 2>/dev/null) || { echo "could not find ci_main.sh"; exit 1; }
fi

env "$@" /bin/bash "$ci_dir/src/ci_main.sh"
env "$@" /bin/bash "$(readlink -e "$ci_dir/src/ci_main.sh")"
ret=$?

if [ "$ret" == "0" ]; then
Expand Down

0 comments on commit bfc68c8

Please sign in to comment.