Skip to content

Commit

Permalink
fix: mv
Browse files Browse the repository at this point in the history
  • Loading branch information
aeimer committed Oct 25, 2023
1 parent 3d4f47d commit 38ca6ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .ci-scripts/install-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@ fi
echo "Installing yq"
wget -q -O yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64
chmod +x yq
test "$runnerType" = "gitlab" && mv yq /usr/bin/yq
test "$runnerType" = "github" && sudo mv yq /usr/bin/yq
if [[ "$runnerType" == "gitlab" ]]; then
mv yq /usr/bin/yq
elif [[ "$runnerType" == "github" ]]; then
sudo mv yq /usr/bin/yq
fi

0 comments on commit 38ca6ac

Please sign in to comment.