Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Neilpang committed Oct 1, 2022
1 parent 5fbf2ff commit 08e4bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.sh
Expand Up @@ -152,15 +152,15 @@ startVM() {
rsyncToVM() {
_pwd="$PWD"
cd "$_oldPWD"
rsync -auvzrtopg --exclude _actions --exclude _PipelineMapping --exclude _temp /Users/runner/work/ $osname:work
rsync -avrtopg -e 'ssh -o MACs=umac-64-etm@openssh.com' --exclude _actions --exclude _PipelineMapping --exclude _temp /Users/runner/work/ $osname:work
cd "$_pwd"
}


rsyncBackFromVM() {
_pwd="$PWD"
cd "$_oldPWD"
rsync -uvzrtopg $osname:work/ /Users/runner/work
rsync -vrtopg -e 'ssh -o MACs=umac-64-etm@openssh.com' $osname:work/ /Users/runner/work
cd "$_pwd"
}

Expand Down

0 comments on commit 08e4bc4

Please sign in to comment.