Shorten path for TMPDIR.

This commit is contained in:
Dain Nilsson 2022-11-18 13:34:43 +01:00
parent 1ad77be3b7
commit 00a2411c80
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8

View File

@ -24,11 +24,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install poetry
# Needed to shorten the path for zxing-cpp build
poetry config virtualenvs.path C:\e
- name: Build the Helper
run: .\build-helper.bat
run: |
# Needed to shorten the path for zxing-cpp build
$env:TMPDIR = "C:\e"
poetry config virtualenvs.path C:\e
.\build-helper.bat
- uses: subosito/flutter-action@v2
with: