mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/win32-vd_agent
synced 2025-12-25 20:34:18 +00:00
Avoid to run executables using Wine if system is not Linux. Use relative paths for executables as bash otherwise won't find them. Make build.sh script fail on intermediate errors. Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
6 lines
91 B
Bash
Executable File
6 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WINE=wine
|
|
[ "x`uname -s`" = xLinux ] || WINE=
|
|
exec $WINE ./test-shell-win.exe
|