Skip to content

Commit

Permalink
debrelease.sh: run readlink before cd
Browse files Browse the repository at this point in the history
  • Loading branch information
dankamongmen committed Jan 9, 2025
1 parent 7618f61 commit f2ba02b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/debrelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ uscan --repack --compression xz --force
XBALL=notcurses_$VERSION+dfsg.1.orig.tar.xz
gpg --sign --armor --detach-sign ../$XBALL
ASC=$(readlink -f ../$XBALL.asc)
XBALL=$(readlink -f $XBALL)
cd "$SRCDIR"
gh release upload v$VERSION $ASC $(readlink -f $XBALL)
gh release upload v$VERSION $ASC $XBALL
cd -
git commit -m "v$VERSION" -a

Expand Down

0 comments on commit f2ba02b

Please sign in to comment.