• Home
  • Raw
  • Download

Lines Matching +full:dry +full:- +full:run

17 if "%1" EQU "-h" goto Help
18 if "%1" EQU "-o" (set HOST=%~2) && shift && shift && goto CheckOpts
19 if "%1" EQU "--host" (set HOST=%~2) && shift && shift && goto CheckOpts
20 if "%1" EQU "-u" (set USER=%~2) && shift && shift && goto CheckOpts
21 if "%1" EQU "--user" (set USER=%~2) && shift && shift && goto CheckOpts
22 if "%1" EQU "-t" (set TARGET=%~2) && shift && shift && goto CheckOpts
23 if "%1" EQU "--target" (set TARGET=%~2) && shift && shift && goto CheckOpts
24 if "%1" EQU "--dry-run" (set DRYRUN=true) && shift && goto CheckOpts
25 if "%1" EQU "--skip-upload" (set NOUPLOAD=true) && shift && goto CheckOpts
26 if "%1" EQU "--skip-gpg" (set NOGPG=true) && shift && goto CheckOpts
27 if "%1" EQU "--skip-purge" (set NOPURGE=true) && shift && goto CheckOpts
28 if "%1" EQU "--skip-test" (set NOTEST=true) && shift && goto CheckOpts
29 if "%1" EQU "-T" (set NOTEST=true) && shift && goto CheckOpts
50 echo Skipping GPG signature generation because of --skip-gpg
53 …if not defined GPG where /R "%PCBUILD%..\externals\windows-installer" gpg2 > "%TEMP%\gpg.loc" 2> n…
87 echo Test failed - purging and retrying
99 echo uploadrelease.bat --host HOST --user USERNAME [--target TARGET] [--dry-run] [-h]
101 echo --host (-o) Specify the upload host (required)
102 echo --user (-u) Specify the user on the host (required)
103 echo --target (-t) Specify the target directory on the host
104 echo --dry-run Display commands and filenames without executing them
105 echo --skip-gpg Does not generate GPG signatures before uploading
106 echo --skip-purge Does not perform CDN purge after uploading
107 echo --skip-test (-T) Does not perform post-upload tests
108 echo -h Display this help information