diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-07 12:30:46 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-07 12:30:46 -0400 |
commit | da72e958fe0c2ee88d39139f93c4d73897f711ee (patch) | |
tree | 59ae77ff2349efe54ce7c1fc2fabf6b8f2b37e42 /.github | |
parent | aa906a9b7f8dbb24c97ba09852284f093cc4e525 (diff) |
SL-18837: Quote integers used for environment variables
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 955493dd24..7df15f0668 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -33,10 +33,10 @@ jobs: # the individual test fails. LOGFAIL: DEBUG # Force py.exe to select python3 rather than plain python (2) - PY_PYTHON: 3 + PY_PYTHON: "3" # but if unit tests fail to import llsd (i.e. wrong Python interpreter), # make py.exe enumerate the possibilities and explain its choice - PYLAUNCHER_DEBUG: 1 + PYLAUNCHER_DEBUG: "1" steps: - name: Checkout code uses: actions/checkout@v3 |