mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-23 03:02:50 +03:00
exec to avoid extra shell process while ecode runs (#122)
This commit is contained in:
committed by
GitHub
parent
61e2df83db
commit
06bf7e8b7d
@@ -2,4 +2,4 @@
|
||||
CANONPATH=$(readlink -f "$0")
|
||||
DIRPATH="$(dirname "$CANONPATH")"
|
||||
|
||||
LD_LIBRARY_PATH="$DIRPATH/libs" "$DIRPATH/ecode.bin" "$@"
|
||||
LD_LIBRARY_PATH="$DIRPATH/libs" exec "$DIRPATH/ecode.bin" "$@"
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
CANONPATH=$(readlink -f "$0")
|
||||
DIRPATH="$(dirname "$CANONPATH")"
|
||||
|
||||
LD_LIBRARY_PATH="$DIRPATH/libs" "$DIRPATH/ecode.bin" "$@"
|
||||
LD_LIBRARY_PATH="$DIRPATH/libs" exec "$DIRPATH/ecode.bin" "$@"
|
||||
|
||||
Reference in New Issue
Block a user