1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-26 17:24:05 +08:00
This commit is contained in:
shaoying 2020-06-04 10:27:23 +08:00
parent 577b052fa0
commit 712290be48

View File

@ -22,12 +22,12 @@ ish_miss_prepare toolkits
repos=(volcanos icebergs intshell contexts toolkits learning) repos=(volcanos icebergs intshell contexts toolkits learning)
ish_miss_pull() { ish_miss_pull() {
for repos in $repos; do for p in $repos; do
cd usr/$repos && pwd && git pull; cd - cd usr/$p && pwd && git pull; cd -
done done
} }
ish_miss_status() { ish_miss_status() {
for repos in $repos; do for p in $repos; do
cd usr/$repos && pwd && git status; cd - cd usr/$p && pwd && git status; cd -
done done
} }