lib: Fix accidental forkbomb when using release.sh

This commit is contained in:
Ethan P
2021-04-06 16:21:18 -07:00
parent 54db67408e
commit 08d2896b1a

View File

@ -8,7 +8,7 @@
# Gets the current bat version. # Gets the current bat version.
bat_version() { bat_version() {
"$EXECUTABLE_BAT" --version | cut -d ' ' -f 2 command "$EXECUTABLE_BAT" --version | cut -d ' ' -f 2
return return
} }