diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-05-16 23:10:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 23:10:14 -0400 |
commit | 001bca9c77a4dec9ef348e084e95c9ead3edb576 (patch) | |
tree | 5169cb5a21d2cd976a36e7c5418799791895d813 /.github | |
parent | bc3013fc68746265db78bf92623f7e6e3e469264 (diff) | |
download | cleanpath-001bca9c77a4dec9ef348e084e95c9ead3edb576.tar.gz |
Fix cmake barfing on backslashes (#7)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 394d587..1b41205 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -8,7 +8,7 @@ on: env: TESTVAR_NIX: "/usr/local/bin:/usr/bin:/bin" - TESTVAR_WIN: "C:\\usr\\local\\bin;C:\\usr\\bin;C:\\bin" + TESTVAR_WIN: "C:/usr/local/bin;C:/usr/bin;C:/bin" jobs: tests: |