aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-11-06 18:33:38 +0100
committerGitHub <noreply@github.com>2020-11-06 18:33:38 +0100
commitd27ff407ad33a57ba8f885d17fd4a763e4b80f76 (patch)
tree0260fbd35f4bf11a94779cc17f1b3b34a23f57a1
parent3774165d9d10a3f14a51b2c73110d9b80d8bf092 (diff)
parente2ab7af0336db05474e1ef2279299763a20a4362 (diff)
Merge pull request #4426 from joshuaboniface/nohup-fix
Remove spurious argument to nohup
-rw-r--r--.ci/azure-pipelines-package.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/azure-pipelines-package.yml b/.ci/azure-pipelines-package.yml
index 852594e67..db8885a20 100644
--- a/.ci/azure-pipelines-package.yml
+++ b/.ci/azure-pipelines-package.yml
@@ -167,7 +167,7 @@ jobs:
inputs:
sshEndpoint: repository
runOptions: 'commands'
- commands: sudo nohup -n /srv/repository/collect-server.azure.sh /srv/repository/incoming/azure $(Build.BuildNumber) unstable &
+ commands: sudo nohup /srv/repository/collect-server.azure.sh /srv/repository/incoming/azure $(Build.BuildNumber) unstable &
- task: SSH@0
displayName: 'Update Stable Repository'
@@ -176,7 +176,7 @@ jobs:
inputs:
sshEndpoint: repository
runOptions: 'commands'
- commands: sudo nohup -n /srv/repository/collect-server.azure.sh /srv/repository/incoming/azure $(Build.BuildNumber) &
+ commands: sudo nohup /srv/repository/collect-server.azure.sh /srv/repository/incoming/azure $(Build.BuildNumber) &
- job: PublishNuget
displayName: 'Publish NuGet packages'