Skip to content

Commit 2eaf4af

Browse files
committed
Fix VGUI autobuild on Linux
1 parent dad4d40 commit 2eaf4af

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
if: startsWith(matrix.os, 'ubuntu')
6565
run: |
6666
schroot --chroot steamrt_scout_i386 -- cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPOLLY=ON -B build -S . -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined" -DUSE_VGUI=${{ env.USE_VGUI }} -DCMAKE_INSTALL_PREFIX="$PWD/dist"
67-
if [ ${{ env.USE_VGUI == 'ON' }} ]; then cp vgui_support/vgui-dev/lib/vgui.so build/cl_dll ; fi
67+
if [ ${{ env.USE_VGUI == 'ON' }} ]; then cp vgui_support/vgui-dev/lib/vgui.so build/cl_dll; cp vgui_support/vgui-dev/lib/vgui.so build ; fi
6868
schroot --chroot steamrt_scout_i386 -- cmake --build build --target all
6969
schroot --chroot steamrt_scout_i386 -- cmake --build build --target install
7070

.github/workflows/manual.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
run: |
6565
mkdir -p build/cl_dll
6666
cp vgui_support/vgui-dev/lib/vgui.so build/cl_dll
67+
cp vgui_support/vgui-dev/lib/vgui.so build
6768
- name: Build on Linux
6869
if: startsWith(matrix.os, 'ubuntu')
6970
run: |

0 commit comments

Comments
 (0)