We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we might be able to remove the files array:
files
gunstage/bin/git-unstage
Lines 29 to 31 in 4d58de8
and replace the for loop’s files iterator:
for
Line 35 in 4d58de8
with an ${if:-else} substitution like this:
${if:-else}
for file in "${@:-.}"; do
If the array is gone, then both scripts will be POSIX-compliant and we’ll change these
Line 1 in 4d58de8
gunstage/gunstage.plugin.zsh
#!/usr/bin/env sh
The text was updated successfully, but these errors were encountered:
7729fd2
replace Bash with Bourne shell /usr/bin/env sh (#45)
/usr/bin/env sh
8750f5e
https://github.com/mcornella/dotfiles/blob/51feef6/zshenv#L10-L11
No branches or pull requests
we might be able to remove the
files
array:gunstage/bin/git-unstage
Lines 29 to 31 in 4d58de8
and replace the
for
loop’sfiles
iterator:gunstage/bin/git-unstage
Line 35 in 4d58de8
with an
${if:-else}
substitution like this:If the array is gone, then both scripts will be POSIX-compliant and we’ll change these
gunstage/bin/git-unstage
Line 1 in 4d58de8
gunstage/gunstage.plugin.zsh
Line 1 in 4d58de8
to this
#!/usr/bin/env sh
The text was updated successfully, but these errors were encountered: