Skip to content

Commit

Permalink
Fix build for undefined variable case
Browse files Browse the repository at this point in the history
  • Loading branch information
nguerrera committed Mar 4, 2020
1 parent 5be2819 commit b66b13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/Publishing.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<!-- We use a separate target to publish this to blob storage so that we can push this to
a relative path inside the blob storage. -->
<Target Name="PublishToolsetAssets" DependsOnTargets="ReadToolsetVersion" BeforeTargets="Publish" Condition="$(PublishToAzure)">
<Target Name="PublishToolsetAssets" DependsOnTargets="ReadToolsetVersion" BeforeTargets="Publish" Condition="'$(PublishToAzure)' == 'true'">
<ItemGroup>
<ToolsetAssetsToPushToBlobFeed Include="@(ToolsetAssetsToPublish)" IsShipping="false" >
<RelativeBlobPath>$(BlobStoragePartialRelativePath)/$(ToolsetVersionValue)/$([System.String]::Copy('%(Filename)%(Extension)').Replace('\' ,'/'))</RelativeBlobPath>
Expand Down

0 comments on commit b66b13d

Please sign in to comment.