diff --git a/scripts/cp_broker.sh b/scripts/cp_broker.sh index 5377620..d6c0f9c 100755 --- a/scripts/cp_broker.sh +++ b/scripts/cp_broker.sh @@ -5,7 +5,7 @@ for val in "${StringArray[@]}"; do if [ -e ../$val ] then echo $val - cp -vra ../$val . + cp -ra ../$val . fi done -cp -vra Libs zz_Skeleton \ No newline at end of file +cp -ra Libs zz_Skeleton \ No newline at end of file diff --git a/scripts/cp_libs.sh b/scripts/cp_libs.sh index c2f409f..c043ac7 100755 --- a/scripts/cp_libs.sh +++ b/scripts/cp_libs.sh @@ -7,7 +7,8 @@ do if [ -e "$entry/$findterm" ] then echo "$entry" - cp -vra $src $entry + cp -ra $src $entry + cd $entry + git commit "Libs/*" -m "Update Libs" && git push fi -done - +done \ No newline at end of file