From 7ef4ee6ae79697108e71f2657f61addb6ba2e338 Mon Sep 17 00:00:00 2001 From: shaoying Date: Thu, 4 Jun 2020 10:32:13 +0800 Subject: [PATCH] opt miss.sh --- etc/miss.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/etc/miss.sh b/etc/miss.sh index d67b5848..ec42c09a 100644 --- a/etc/miss.sh +++ b/etc/miss.sh @@ -23,11 +23,15 @@ ish_miss_prepare toolkits repos=(volcanos icebergs intshell contexts toolkits learning) ish_miss_pull() { for p in $repos; do - cd usr/$p && pwd && git pull; cd - + cd usr/$p && echo && ish_show -g $PWD + git pull + cd - done } ish_miss_status() { for p in $repos; do - cd usr/$p && pwd && git status; cd - + cd usr/$p && echo && ish_show -g $PWD + git status + cd - done }