Skip to content

Commit

Permalink
Merge branch 'fix-kitmaker' into 'main'
Browse files Browse the repository at this point in the history
Fix kitmaker release for opensuse-leap

See merge request nvidia/container-toolkit/container-toolkit!244
  • Loading branch information
Evan Lezar committed Nov 21, 2022
2 parents 53bb940 + 22e65b3 commit 217a135
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/extract-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fi
PACKAGE_IMAGE=$1
DISTARCH=$2
DIST=${DISTARCH%-*}
ARCH=${DISTARCH#*-}
ARCH=${DISTARCH##*-}

if [[ -z "${DIST}" || -z "${ARCH}" ]]; then
echo "ERROR: Distro and Architecture must be specified." >&2
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-kitmaker-artifactory.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ source "${SCRIPTS_DIR}"/utils.sh

DISTARCH=$1
DIST=${DISTARCH%-*}
ARCH=${DISTARCH#*-}
ARCH=${DISTARCH##*-}
ARTIFACTORY_URL=$2

CURL=${CURL:-curl}
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-packages-artifactory.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fi
DISTARCH=$1
ARTIFACTORY_PATH=$2
DIST=${DISTARCH%-*}
ARCH=${DISTARCH#*-}
ARCH=${DISTARCH##*-}

CURL=${CURL:-curl}

Expand Down

0 comments on commit 217a135

Please sign in to comment.