Compare commits
No commits in common. "90fb7b3f47fd86f1510104adeff932c1eeac655e" and "1eaa310a0f7cf310f219c6bd07998f5ac7814707" have entirely different histories.
90fb7b3f47
...
1eaa310a0f
2 changed files with 6 additions and 1 deletions
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if cd ~/git; then
|
if cd "${1:-${HOME}/Git}"; then
|
||||||
for repo in *; do
|
for repo in *; do
|
||||||
cd "$repo" || continue
|
cd "$repo" || continue
|
||||||
printf '\n%s\n' "$repo"
|
printf '\n%s\n' "$repo"
|
||||||
git pull
|
git pull
|
||||||
cd ..
|
cd ..
|
||||||
done
|
done
|
||||||
|
elif [ -z "$1" ]; then
|
||||||
|
exec "$0" ~/git
|
||||||
else
|
else
|
||||||
>&2 echo "Can't find your git folder!"
|
>&2 echo "Can't find your git folder!"
|
||||||
fi
|
fi
|
||||||
|
|
3
share/updateall/scripts.d/nvim-packer
Executable file
3
share/updateall/scripts.d/nvim-packer
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
nvim +PackerUpdate +qall
|
||||||
|
|
Loading…
Reference in a new issue