mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
build: Include a launcher shell script with the executables
Closes #2528
This commit is contained in:
3
dist/cli/imhex.bat
vendored
Normal file
3
dist/cli/imhex.bat
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
@echo off
|
||||
|
||||
start "" "%~dp0..\imhex.exe" %*
|
||||
5
dist/cli/imhex.sh
vendored
Normal file
5
dist/cli/imhex.sh
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
script_path=$(readlink -f "$0")
|
||||
script_dir=$(dirname "${script_path}")
|
||||
"${script_dir}/../imhex" "$@" > /dev/null 2>&1 &
|
||||
Reference in New Issue
Block a user