Skip to content

Commit 01ef338

Browse files
Merge branch 'main' into christophe-papazian/decouple_appsec_from_tracer
2 parents 72b3bbc + 1247ac2 commit 01ef338

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.gitlab/prepare-oci-package.sh

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/bin/bash
22
set -eo pipefail
33

4+
if [ "$OS" != "linux" ]; then
5+
echo "Only linux packages are supported. Exiting"
6+
exit 0
7+
fi
8+
49
if [ -n "$CI_COMMIT_TAG" ] && [ -z "$PYTHON_PACKAGE_VERSION" ]; then
510
PYTHON_PACKAGE_VERSION=${CI_COMMIT_TAG##v}
611
fi

0 commit comments

Comments
 (0)