Skip to content

Commit

Permalink
Skip non-linux OCI package creation (#4313)
Browse files Browse the repository at this point in the history
  • Loading branch information
randomanderson authored Jan 24, 2025
1 parent 8818eb8 commit 219aded
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitlab/prepare-oci-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

set -e

if [ "$OS" != "linux" ]; then
echo "Only linux packages are supported. Exiting"
exit 0
fi

mkdir sources

cp ../lib-injection/host_inject.rb sources
Expand Down

0 comments on commit 219aded

Please sign in to comment.