Skip to content

Commit

Permalink
fix (Laerdal.SetupBuildEnvironment.sh): store nuget feed password in …
Browse files Browse the repository at this point in the history
…clear-text

   this is done in order to resolve an error we're witnessing on the particular nuget toolchain pre-installed in the vm-image we're using
  • Loading branch information
ksidirop-laerdal committed Apr 11, 2024
1 parent b37b382 commit 6aafc23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Laerdal.Scripts/Laerdal.SetupBuildEnvironment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ dotnet nuget add \
source "${NUGET_FEED_URL}" \
--name "LaerdalMedical" \
--username "${NUGET_FEED_USERNAME}" \
--password "${NUGET_FEED_ACCESSTOKEN}"
--password "${NUGET_FEED_ACCESSTOKEN}" \
--store-password-in-clear-text
declare exitCode=$?
if [ $exitCode != 0 ]; then
echo "##vso[task.logissue type=error]Failed to add 'Laerdal Nuget Feed' as a nuget source."
Expand Down

0 comments on commit 6aafc23

Please sign in to comment.