Skip to content

Commit

Permalink
Fix PKG_REPO
Browse files Browse the repository at this point in the history
Fix typo in pkg name
  • Loading branch information
jongough committed Dec 4, 2019
1 parent 6f4169c commit c1cb549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/in-files/circleci-upload.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set -xe

STABLE_REPO=${CLOUDSMITH_STABLE_REPO:-'@CLOUDSMITH_USER@/@CLOUDSMITH_BASE_REPOSITORY@-stable'}
UNSTABLE_REPO=${CLOUDSMITH_UNSTABLE_REPO:-'@CLOUDSMITH_USER@/@CLOUDSMITH_BASE_REPOSITORY@'}
STABLE_PKG_REPO=${CLOUDSMITH_PKG_REPO:-'@CLOUDSMITH_USER@/@CLOUDSMITH_BASE_REPOSITORY@-pkgl'}
STABLE_PKG_REPO=${CLOUDSMITH_PKG_REPO:-'@CLOUDSMITH_USER@/@CLOUDSMITH_BASE_REPOSITORY@-pkg'}
PKG_EXT=${CLOUDSMITH_PKG_EXT:-'deb'}

if [ -z "$CIRCLECI" ]; then
Expand Down Expand Up @@ -68,7 +68,7 @@ else
PKG_REPO="$UNSTABLE_REPO"
fi

sudo sed -i -e "s|--pkg_repo--|$REPO|" $xml
sudo sed -i -e "s|--pkg_repo--|$PKG_REPO|" $xml
sudo sed -i -e "s|--name--|$tarball_name|" $xml
sudo sed -i -e "s|--version--|$VERSION|" $xml
sudo sed -i -e "s|--filename--|$tarball_basename|" $xml
Expand Down

0 comments on commit c1cb549

Please sign in to comment.