Skip to content

Commit

Permalink
Remove use of readlink
Browse files Browse the repository at this point in the history
Fixes #12
  • Loading branch information
lukebakken committed Jul 3, 2024
1 parent e7ef6cc commit 3d138f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/ubuntu/gha-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [[ -d $GITHUB_WORKSPACE ]]
then
echo "[INFO] GITHUB_WORKSPACE is set: '$GITHUB_WORKSPACE'"
else
GITHUB_WORKSPACE="$(readlink --canonicalize-existing "$script_dir/../..")"
GITHUB_WORKSPACE="$(cd "$script_dir/../.." && pwd)"
echo "[INFO] set GITHUB_WORKSPACE to: '$GITHUB_WORKSPACE'"
fi

Expand Down

0 comments on commit 3d138f4

Please sign in to comment.