We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
=
1 parent 9a35780 commit 91170cdCopy full SHA for 91170cd
git-open
@@ -46,7 +46,8 @@ done
46
47
# parse suffix from suffix=value
48
IFS='=' read -ra suffix_flag <<< "$suffix_flag"
49
-suffix=${suffix_flag[1]}
+function join_by { local IFS="$1"; shift; echo "$*"; }
50
+suffix=$(join_by = ${suffix_flag[@]:1})
51
52
# are we in a git repo?
53
if ! git rev-parse --is-inside-work-tree &>/dev/null; then
0 commit comments