We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afedfdc commit cc4ceb6Copy full SHA for cc4ceb6
scripts/package-repo-import.sh
@@ -30,7 +30,11 @@ check_package() {
30
|| EXITCODE=$?
31
if [[ "${EXITCODE}" -eq 0 ]]; then
32
echo "Package version already exists. Removing it..."
33
- gcloud artifacts versions delete --quiet "${VER}" --package "${PACKAGE}" --repository "${REPO}" --location "${GCLOUD_LOCATION}"
+ gcloud artifacts versions delete \
34
+ --quiet "${VER}" \
35
+ --package "${PACKAGE}" \
36
+ --repository "${REPO}" \
37
+ --location "${GCLOUD_LOCATION}"
38
touch /tmp/version-deleted.stamp
39
fi
40
0 commit comments