mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
maint(developer): use double quotes so that variable gets replaced
This fixes developer release builds. Previously we used single quotes for specifying `--rsync-path`. This caused the parameter to contain the variable name instead of the content. Follow-up-of: #14059 Part-of: #13399 Test-bot: skip
This commit is contained in:
parent
6e7071ada6
commit
4bfb35c19f
3 changed files with 6 additions and 6 deletions
|
|
@ -25,7 +25,7 @@ $rsync_args = @(
|
|||
'-vrzltp', # verbose, recurse, zip, copy symlinks, preserve times, permissions
|
||||
'--chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r', # map Windows security to host security
|
||||
'--stats', # show statistics for log
|
||||
'--rsync-path="$RSYNC_PATH"', # path on remote server
|
||||
"--rsync-path='$RSYNC_PATH'", # path on remote server
|
||||
"--rsh=$RSYNC_HOME\ssh -i $USERPROFILE\.ssh\id_rsa -o UserKnownHostsFile=$USERPROFILE\.ssh\known_hosts", # use ssh
|
||||
"$RSYNC_USER@$RSYNC_HOST:$RSYNC_ROOT/windows/symbols/000admin/lastid.txt", # target server + path
|
||||
"." # download the whole symbols 000Admin folder
|
||||
|
|
@ -38,7 +38,7 @@ $rsync_args = @(
|
|||
'-vrzltp', # verbose, recurse, zip, copy symlinks, preserve times, permissions
|
||||
'--chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r', # map Windows security to host security
|
||||
'--stats', # show statistics for log
|
||||
'--rsync-path="$RSYNC_PATH"', # path on remote server
|
||||
"--rsync-path='$RSYNC_PATH'", # path on remote server
|
||||
"--rsh=$RSYNC_HOME\ssh -i $USERPROFILE\.ssh\id_rsa -o UserKnownHostsFile=$USERPROFILE\.ssh\known_hosts", # use ssh
|
||||
"$RSYNC_USER@$RSYNC_HOST:$RSYNC_ROOT/windows/symbols/000admin/history.txt", # target server + path
|
||||
"." # download the whole symbols 000Admin folder
|
||||
|
|
@ -51,7 +51,7 @@ $rsync_args = @(
|
|||
'-vrzltp', # verbose, recurse, zip, copy symlinks, preserve times, permissions
|
||||
'--chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r', # map Windows security to host security
|
||||
'--stats', # show statistics for log
|
||||
'--rsync-path="$RSYNC_PATH"', # path on remote server
|
||||
"--rsync-path='$RSYNC_PATH'", # path on remote server
|
||||
"--rsh=$RSYNC_HOME\ssh -i $USERPROFILE\.ssh\id_rsa -o UserKnownHostsFile=$USERPROFILE\.ssh\known_hosts", # use ssh
|
||||
"$RSYNC_USER@$RSYNC_HOST:$RSYNC_ROOT/windows/symbols/000admin/server.txt", # target server + path
|
||||
"." # download the whole symbols 000Admin folder
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ $rsync_args = @(
|
|||
'-vrzltp', # verbose, recurse, zip, copy symlinks, preserve times, permissions
|
||||
'--chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r', # map Windows security to host security
|
||||
'--stats', # show statistics for log
|
||||
'--rsync-path="$RSYNC_PATH"', # path on remote server
|
||||
"--rsync-path='$RSYNC_PATH'", # path on remote server
|
||||
"--rsh=$RSYNC_HOME\ssh -i $USERPROFILE\.ssh\id_rsa -o UserKnownHostsFile=$USERPROFILE\.ssh\known_hosts", # use ssh
|
||||
".", # upload the whole symbols folder
|
||||
"$RSYNC_USER@$RSYNC_HOST:$RSYNC_ROOT/windows/symbols/" # target server + path
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ $rsync_args = @(
|
|||
'-vrzltp', # verbose, recurse, zip, copy symlinks, preserve times, permissions
|
||||
'--chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r', # map Windows security to host security
|
||||
'--stats', # show statistics for log
|
||||
'--rsync-path="$RSYNC_PATH"', # path on remote server
|
||||
"--rsync-path='$RSYNC_PATH'", # path on remote server
|
||||
"--rsh=$RSYNC_HOME\ssh -i $USERPROFILE\.ssh\id_rsa -o UserKnownHostsFile=$USERPROFILE\.ssh\known_hosts", # use ssh
|
||||
"$build_number", # upload the whole build folder
|
||||
"$RSYNC_USER@$RSYNC_HOST:$RSYNC_ROOT/developer/$tier/" # target server + path
|
||||
|
|
@ -204,7 +204,7 @@ $rsync_args = @(
|
|||
'-vrzltp', # verbose, recurse, zip, copy symlinks, preserve times, permissions
|
||||
'--chmod=Dug=rwx,Do=rx,Fug=rw,Fo=r', # map Windows security to host security
|
||||
'--stats', # show statistics for log
|
||||
'--rsync-path="$RSYNC_PATH"', # path on remote server
|
||||
"--rsync-path='$RSYNC_PATH'", # path on remote server
|
||||
"--rsh=$RSYNC_HOME\ssh -i $USERPROFILE\.ssh\id_rsa -o UserKnownHostsFile=$USERPROFILE\.ssh\known_hosts", # use ssh
|
||||
"$build_number", # upload the whole build folder
|
||||
"$RSYNC_USER@$RSYNC_HOST:$RSYNC_ROOT/developer/$tier/" # target server + path
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue