I am a newbie in bamboo, and i successfully did the checkout and build part, but now i am trying to restore nuget packages before the build, but it fails with the below error message.
This error message happens when the command is not included in the path variable. Its there, and i am also able to type "nuget restore MySolution.sln" in the cmd and it restores all my packages. But when i try through Bamboo, in which i use Script configuration task type, with interpreter as bin/sh or cmd.exe, Script location as Inline and in the script body i type "nuget restore MySolution.sln".
Is there something else i should be doing ?
nuget is not recognized as an internal or external command
Hey Bobby,
Welcome! :)
Firstly, are you running these builds in a local or remote agent?
If it's a remote agent build it might be caused by a bug in the service wrapper which causes a clash when the PATH environment variable is present as both a user and system environment variable:
If it's a local agent build, I'd be curious if the path to your nuget binary only exists on the user PATH and perhaps your Bamboo process / service is running as a different user to what you're using in your command-line tests. In that case, could you try running Bamboo as a console app from <bamboo-install>/bin/start-bamboo.bat as the same user where your command-line tests were succeeding?
Cheers,
Jeremy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.