Skip to content

Commit

Permalink
ci: fix wrong variable name in shared.sh's ciCommandAddPath
Browse files Browse the repository at this point in the history
  • Loading branch information
pietroalbini committed Dec 30, 2019
1 parent d9278f7 commit ae9ca09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/shared.sh
Expand Up @@ -99,7 +99,7 @@ function ciCommandAddPath {
if isAzurePipelines; then
echo "##vso[task.prependpath]${path}"
elif isGitHubActions; then
echo "::add-path::${value}"
echo "::add-path::${path}"
else
echo "ciCommandAddPath only works inside CI!"
exit 1
Expand Down

0 comments on commit ae9ca09

Please sign in to comment.