The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Pipeline | dotnet build $PROJECT_PATH with spaces in the path

alex75
Contributor
March 6, 2021

This is my pipeline:

image: microsoft/dotnet:sdkimage: mcr.microsoft.com/dotnet/core/sdk:3.1-buster
pipelines:
default:
- step: 
    caches:
          - dotnetcore       
script:
- export PROJECT_NAME="Web Site/My Website.sln"   
- dotnet restore "Web Site"   
     
#- dotnet build $PROJECT_NAME          # <-- this does not work

- dotnet build "Web Site/My Website.sln" # <-- this works!
 

The path of the VS solution file is this: Web Site/My WEbsite.sln 
Essentially I'm not able to wrap the path in double quote using a (bash) variable,
to obtain the result of the last line.

I tried:
- export PROJECT_NAME="\"Web Site/My Website.sln\""
- export PROJECT_NAME="'Web Site/My Website.sln'"
- dotnet build "$PROJECT_NAME" 

They all fails like there is no quote surrounding the path.

0 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

TAGS
AUG Leaders

Atlassian Community Events