1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-27 03:53:00 +02:00

switching over to powershell

This commit is contained in:
Joseph Flinn 2020-12-30 22:58:58 +00:00
parent 3f39d1ccb3
commit 58ed7f5f6a

View File

@ -17,9 +17,12 @@ steps:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
packageVersion=(Get-Content -Raw -Path $(System.DefaultWorkingDirectory)\src\package.json | ConvertFrom-Json).version;
echo "##vso[task.setvariable variable=PACKAGE_VERSION]${packageVersion}"
- task: PoswerShell@v2
inputs:
targetType: 'inline'
script: |
$packageVersion = (Get-Content -Raw -Path $(System.DefaultWorkingDirectory)\src\package.json | ConvertFrom-Json).version;
echo "##vso[task.setvariable variable=PACKAGE_VERSION]${packageVersion}"
displayName: 'Setting packageVersion'
- script: |