Skip to content

Commit

Permalink
Update release script based on shellcheck suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrikstrid committed Dec 16, 2024
1 parent 09403a6 commit 204c73a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/dune-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ step()
{
printf "Continue? [Yn] "
read action
if [ "x$action" == "xn" ]; then exit 2; fi
if [ "x$action" == "xN" ]; then exit 2; fi
if [ "$action" = "n" ]; then exit 2; fi
if [ "$action" = "N" ]; then exit 2; fi
}

dune-release tag "$TAG"
Expand Down

0 comments on commit 204c73a

Please sign in to comment.