Skip to content

Commit

Permalink
PR #629: releasing: Make sure the codename is valid.
Browse files Browse the repository at this point in the history
Fixes #627.

Signed-off-by: Tim 'mithro' Ansell <[email protected]>

GitHub PR #629

Copybara import of the project:

  - 2075a58 releasing: Make sure the codename is valid. by Tim 'mithro' Ansell <[email protected]>
  - 81c30e2 Merge 2075a58 into 5c342... by Tim Ansell <[email protected]>

Closes #629

PiperOrigin-RevId: 346493887
  • Loading branch information
mithro authored and fangism committed Dec 9, 2020
1 parent 5c34239 commit 23eebd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-releases-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ done
DISTRO_ARCH=$(uname -m)
DISTRO=$(lsb_release --short --id)
DISTRO_RELEASE=$(lsb_release --short --release)
DISTRO_CODENAME=$(lsb_release --short --codename)
DISTRO_CODENAME=$(lsb_release --short --codename | sed -e's/[^A-Za-z0-9]//g')
TARBALL=$RELEASE_DIR/verible-$GIT_VERSION-$DISTRO-$DISTRO_RELEASE-$DISTRO_CODENAME-$DISTRO_ARCH.tar.gz
(
cd $RELEASE_DIR
Expand Down

0 comments on commit 23eebd8

Please sign in to comment.