I'm deploying an Angular JS app using web deploy on VSTS. I'm also trying to target a specific path on the Azure app service, specifically /home/site/
to deploy the project files.
If not specified, the app will just deploy to /home/site/wwwroot/
To target this specific path, I'm using arguments, here is the argument:
-verb:sync -source:contentPath="$(System.DefaultWorkingDirectory)/Atlas-CI-Develop/atlas-ui/*.zip" -dest:contentPath="D:\home\site\PS.UI"
Here's the not so nice error i'm getting:
2017-12-18T20:45:27.4283104Z ##[error]Error: Argument '-verb' may only be specified once.
I don't know anywhere else in my pipeline i'm using the attribute verb
, source
or dest
. No other deployment uses web deploy arguments other than the UI.
I have absolutely no idea where to start debugging this issue and any help or insight is tremendously appreciated. Thank you!