commit ed97eca012471f730ba5afddb57ed29847ddbe0e parent dd20abbb7b9c055f3beed1a3ff318de33a56108e Author: gearsix <gearsix@tuta.io> Date: Sat, 15 Apr 2023 19:18:27 +0100 git-pradd fix Diffstat:
M | src/posix/git-pradd.sh | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/posix/git-pradd.sh b/src/posix/git-pradd.sh @@ -37,10 +37,10 @@ else dir="$(pwd)" fi -n=0 +declare -i n=0 for f in "$@" do - n++ + n+=1 pradd "$dir/$f" done