Skip to content

Commit

Permalink
fix file path delimiters
Browse files Browse the repository at this point in the history
  • Loading branch information
turbobobbytraykov committed Jan 6, 2025
1 parent 917bb43 commit 9e08c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-devops/app-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ steps:
- task: CmdLine@2
displayName: 'Create empty .npmrc file in the project root dir'
inputs:
script: 'touch $(Build.SourcesDirectory)\.npmrc'
script: 'touch $(Build.SourcesDirectory)/.npmrc'
failOnStderr: true

- task: npmAuthenticate@0
inputs:
workingFile: '$(Build.SourcesDirectory)\.npmrc'
workingFile: '$(Build.SourcesDirectory)/.npmrc'
customEndpoint: 'public proget'

- task: Npm@1
Expand Down

0 comments on commit 9e08c11

Please sign in to comment.