Skip to content

Commit

Permalink
indent cases in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
bitcoin-tools committed Aug 23, 2024
1 parent df7ed2c commit 496ac87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/process_release_tags
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ throw_error() {
open_url() {
url="$1"
case "${TARGET_KERNEL}" in
Darwin*) open "${url}" ;;
Linux*) xdg-open "${url}" ;;
CYGWIN* | MINGW32* | MSYS* | MINGW*) start "${url}" ;;
*) echo "Unsupported OS, please open the URL manually: ${url}" ;;
Darwin*) open "${url}" ;;
Linux*) xdg-open "${url}" ;;
CYGWIN* | MINGW32* | MSYS* | MINGW*) start "${url}" ;;
*) echo "Unsupported OS, please open the URL manually: ${url}" ;;
esac
}

Expand Down

0 comments on commit 496ac87

Please sign in to comment.