Skip to content

Commit

Permalink
Preserve permissions on uploads to code.
Browse files Browse the repository at this point in the history
Should permit overwrites.
  • Loading branch information
jralls committed Sep 8, 2017
1 parent e809040 commit 8c88c9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildserver/build_package.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ $time_stamp = get-date -format "yyyy-MM-dd HH:mm:ss"
bash-command -command "echo Build Started $time_stamp > $log_unix"
#copy the file to the download server so that everyone can see we've started
if ($hostname) {
bash-command -command "scp $log_unix $hostname/$log_dir/"
bash-command -command "scp -p $log_unix $hostname/$log_dir/"
}

# Update MinGW-w64
Expand All @@ -105,6 +105,6 @@ $time_stamp = get-date -format "yyyy-MM-dd HH:mm:ss"
bash-command -command "echo Build Ended $time_stamp >> $log_unix"
# Copy the transcript and installer to the download server and delete them.
if ($hostname) {
bash-command -command "scp $log_unix $hostname/$log_dir/"
bash-command -command "scp $target_unix/gnucash*setup.exe $hostname/master"
bash-command -command "scp -p $log_unix $hostname/$log_dir/"
bash-command -command "scp -p $target_unix/gnucash*setup.exe $hostname/master"
}

0 comments on commit 8c88c9f

Please sign in to comment.