aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-06-20 11:19:11 +0000
committerSaturneric <[email protected]>2021-06-20 11:19:11 +0000
commitb574db40bf9d3a472998ad6d938ba1093b620aa8 (patch)
treeccfa371d1d9a0b62bfcf0c78fb47e5eb009755a9
parentFix cmake.yml For Windows Build. (diff)
downloadGpgFrontend-b574db40bf9d3a472998ad6d938ba1093b620aa8.tar.gz
GpgFrontend-b574db40bf9d3a472998ad6d938ba1093b620aa8.zip
Fix cmake.yml For Windows Build.
Diffstat (limited to '')
-rw-r--r--.github/workflows/cmake.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index a06d7439..f37c6591 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -75,7 +75,7 @@ jobs:
- name: Configure CMake (Windows)
shell: msys2 {0}
run: |
- cd $(echo "/"${{github.workspace}} | sed 's/\\/\//g' | sed 's/://')
+ cd $(echo "/${github.workspace}" | sed 's/\\/\//g' | sed 's/://')
mkdir build && cd build
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DEXECUTABLE_OUTPUT_PATH=${{env.EXECUTABLE_OUTPUT_PATH}} ..
if: matrix.os == 'windows-latest'