Correction : dans la trame de mise à jour des dépôts Git, expansion de la variable HOME plutôt que tilde qui ne fonctionne pas dans le contexte
This commit is contained in:
parent
f9287f75a8
commit
e8aa03ecb6
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if cd "${1:-~/Git}"; then
|
if cd "${1:-${HOME}/Git}"; then
|
||||||
for repo in *; do
|
for repo in *; do
|
||||||
cd "$repo"
|
cd "$repo"
|
||||||
git pull
|
git pull
|
||||||
|
|
Loading…
Reference in a new issue