Skip to content

Commit

Permalink
Fix slashes on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Oct 2, 2023
1 parent cc388df commit 88d2cbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composite/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ runs:
Linux*|macOS*)
source venv/bin/activate;;
Windows*)
venv\Scripts\activate;;
venv\\Scripts\\activate;;
esac
echo '##[endgroup]'
shell: bash
Expand All @@ -226,7 +226,7 @@ runs:
Linux*|macOS*)
source venv/bin/activate;;
Windows*)
venv\Scripts\activate;;
venv\\Scripts\\activate;;
esac
fi
Expand All @@ -245,7 +245,7 @@ runs:
Linux*|macOS*)
source venv/bin/activate;;
Windows*)
venv\Scripts\activate;;
venv\\Scripts\\activate;;
esac
python3 $GITHUB_ACTION_PATH/../python/publish_test_results.py
echo '##[endgroup]'
Expand Down

0 comments on commit 88d2cbf

Please sign in to comment.