projects
/
gamesguru
/
git-remote-gcrypt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a70fa34
)
avoid bashism
author
Sean Whitton
<spwhitton@spwhitton.name>
Fri, 24 Jul 2020 22:24:54 +0000
(15:24 -0700)
committer
Sean Whitton
<spwhitton@spwhitton.name>
Fri, 24 Jul 2020 22:24:54 +0000
(15:24 -0700)
git-remote-gcrypt is POSIX sh.
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
git-remote-gcrypt
patch
|
blob
|
history
diff --git
a/git-remote-gcrypt
b/git-remote-gcrypt
index 3e209e8b58867b3850c01589ba8b7e8600c1fefe..0cd4c0ec781750f313fbde9e7516e973f9277da9 100755
(executable)
--- a/
git-remote-gcrypt
+++ b/
git-remote-gcrypt
@@
-751,7
+751,7
@@
do_push()
while IFS=: read -r src_ dst_ # << +src:dst
do
- if [
"+" != "${src_:0:1}"
]
+ if [
$(echo "$src_" | cut -c1) != +
]
then
force_passed=false
fi