Skip to content

Commit

Permalink
move datasets windows powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Dec 10, 2023
1 parent f4a301c commit 10dc4c8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,9 @@ jobs:
matrix.python-version != '3.11' && matrix.platform == 'windows-latest'
run: |
$env:GEANT4_DATA_DIR = python -c "import geant4_python_application; print(geant4_python_application.data_dir)"
mkdir ${{ github.workspace }}/geant4-data $GEANT4_DATA_DIR
mv ${{ github.workspace }}/geant4-data/* $GEANT4_DATA_DIR
New-Item -ItemType Directory -Path "${{ github.workspace }}/geant4-data" -Force
New-Item -ItemType Directory -Path "$($GEANT4_DATA_DIR)" -Force
Move-Item "${{ github.workspace }}\geant4-data\*" $env:GEANT4_DATA_DIR -Force
- name: Check import
run: |
Expand Down

0 comments on commit 10dc4c8

Please sign in to comment.