Skip to content

Commit

Permalink
Githubactions: Fix Bad substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Aug 11, 2023
1 parent 800a010 commit c3ec4c8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,15 @@ jobs:
git clone --branch $LIBYUBIHSM_TAG https://github.com/Yubico/yubihsm-shell.git
cd yubihsm-shell
if [ "${PLATFORM:0:6}" == "debian" ] || [ "$PLATFORM" == "ubuntu1804" ]; then
if [ "${PLATFORM:0:6}" = "debian" ] || [ "$PLATFORM" = "ubuntu1804" ]; then
dpkg-buildpackage -b --no-sign
else
dpkg-buildpackage
fi
ls
sudo dpkg -i ./libyubihsm*_amd64.deb
- name: clone yubihsmrs
Expand Down

0 comments on commit c3ec4c8

Please sign in to comment.