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:
Eberhard Beilharz 2025-06-12 18:28:15 +02:00
parent 6e7071ada6
commit 4bfb35c19f
No known key found for this signature in database
GPG key ID: E9140597606020D3
3 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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