Skip to content

Commit 880d463

Browse files
authored
[Bug] Fixing Windows CI bug
1 parent 923f2ea commit 880d463

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/cpp.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ jobs:
8686
# Install the Project with desktop shortcut
8787
- name: Install project (Mac/Windows)
8888
if: matrix.os != 'ubuntu-latest'
89-
run: echo "y" | make install
89+
run: |
90+
cd ${{ github.workspace }}
91+
echo "y" | make install
9092
9193
# Install the Project without desktop shortcut (Linux)
9294
# This is a work around for Linux shortcut bug

0 commit comments

Comments
 (0)