Hello,
I have a pipeline where one step contains this command
rsync -avu 'ssh -p 6222' --safe-links --delete-after --checksum static/ deploy@"$serverhostname":/var/www/static.example.com/
When I change the file and commit, my changes are visible but it still tries to connect to $databasehostname with port 22, which is nowhere in that script (it exists in my pipelines variables though but I need it to connect to $serverhostname)
The main job script preview shows the correct command but subsequent lines say otherwise. See screenshot for better explanation. I have highlighted the different in yellow.
What can I do to force pipelines to execute my script and flush any possible cache it may have?
(I changed the hostname obviously to example.com just for the screenshot)
I figured it out.
My problem was a missing
-e
flag before
'ssh ...'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.