Skip to content

Commit 219aded

Browse files
Skip non-linux OCI package creation (#4313)
1 parent 8818eb8 commit 219aded

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.gitlab/prepare-oci-package.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
set -e
44

5+
if [ "$OS" != "linux" ]; then
6+
echo "Only linux packages are supported. Exiting"
7+
exit 0
8+
fi
9+
510
mkdir sources
611

712
cp ../lib-injection/host_inject.rb sources

0 commit comments

Comments
 (0)