mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
5 lines
195 B
Bash
Executable File
5 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
name="$1"
|
|
gh release view "$name" || gh release create --prerelease --notes "See https://wezfurlong.org/wezterm/changelog.html#$name for the changelog" --title "$name" "$name"
|