Skip to content

Commit

Permalink
Use Get-Location in pwsh
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze413 committed Feb 3, 2024
1 parent c704c63 commit c02b758
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ jobs:
- name: Setup TBB
run: |
dir
echo $pwd
Get-Location
cd tbb
echo $pwd
$env:TBB_INSTALL_DIR=$pwd
$env:TBB_ROOT_DIR=$pwd
Get-Location
$env:TBB_INSTALL_DIR=Get-Location
$env:TBB_ROOT_DIR=Get-Location
"TBB_INSTALL_DIR=$env:TBB_INSTALL_DIR" >> $env:GITHUB_ENV
"TBB_ROOT_DIR=$env:TBB_ROOT_DIR" >> $env:GITHUB_ENV
cd -
Expand Down

0 comments on commit c02b758

Please sign in to comment.