From ea417201b3a23daef2d1946e3416ee7546039ca4 Mon Sep 17 00:00:00 2001 From: winlin Date: Mon, 3 May 2021 14:27:43 +0800 Subject: [PATCH] Tools: Copy to gits --- trunk/3rdparty/{copy_from_gits.sh => copy_to_gits.sh} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename trunk/3rdparty/{copy_from_gits.sh => copy_to_gits.sh} (54%) diff --git a/trunk/3rdparty/copy_from_gits.sh b/trunk/3rdparty/copy_to_gits.sh similarity index 54% rename from trunk/3rdparty/copy_from_gits.sh rename to trunk/3rdparty/copy_to_gits.sh index 335193fc3..d92d3a2ba 100755 --- a/trunk/3rdparty/copy_from_gits.sh +++ b/trunk/3rdparty/copy_to_gits.sh @@ -13,10 +13,10 @@ if [[ ! -d ~/git/signaling ]]; then fi echo "Copy signaling" -cp -R ~/git/signaling/* signaling/ +cp -R signaling/* ~/git/signaling/ && (cd ~/git/signaling && git st) echo "Copy httpx-static" -cp -R ~/git/go-oryx/httpx-static/* httpx-static/ +cp -R httpx-static/* ~/git/go-oryx/httpx-static/ && (cd ~/git/go-oryx && git st) echo "Copy srs-bench" -cp -R ~/git/srs-bench/* srs-bench/ +cp -R srs-bench/* ~/git/srs-bench/ && (cd ~/git/srs-bench && git st)