Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski committed Jun 6, 2024
1 parent 47d4a3e commit 61a8f2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ runs:
INPUT_GITHUB_TOKEN: ${{ github.token }}
run: |
python3 -m venv "$GITHUB_ACTION_PATH"/diffuse-venv
if[[ "$OSTYPE" == "cygwin" ]]; then
if [[ "$OSTYPE" == "cygwin" ]]; then
ls -al "$GITHUB_ACTION_PATH"/diffuse-venv/Scripts
source "$GITHUB_ACTION_PATH"/diffuse-venv/Scripts/activate
elif [[ "$OSTYPE" == "msys" ]]; then
ls -al "$GITHUB_ACTION_PATH"/diffuse-venv/Scripts
source "$GITHUB_ACTION_PATH"/diffuse-venv/Scripts/activate
else
Expand Down

0 comments on commit 61a8f2e

Please sign in to comment.