Skip to content

Commit 734f073

Browse files
nrdxpdzajkowski
authored andcommitted
call exec on launcher scripts
1 parent 0a6a269 commit 734f073

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/universal/bin/eckeygen

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44
cd $DIR/..
5-
./bin/mantis -- eckeygen "$@"
5+
exec ./bin/mantis -- eckeygen "$@"

src/universal/bin/faucet-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44
cd $DIR/..
5-
./bin/mantis -Dconfig.file=./conf/faucet.conf "$@" -- faucet
5+
exec ./bin/mantis -Dconfig.file=./conf/faucet.conf "$@" -- faucet

src/universal/bin/mantis-launcher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ elif [ -z "$1" ]; then
1111
CHAIN_PARAM="-Dconfig.file=./conf/etc.conf"
1212
fi
1313

14-
./bin/mantis ${CHAIN_PARAM:+"$CHAIN_PARAM"} "$@"
14+
exec ./bin/mantis ${CHAIN_PARAM:+"$CHAIN_PARAM"} "$@"

src/universal/bin/mantis-vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44
cd $DIR/..
55

6-
./bin/mantis vm-server "$@"
6+
exec ./bin/mantis vm-server "$@"

src/universal/bin/signatureValidator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44
cd $DIR/..
5-
./bin/mantis -- signature-validator "$@"
5+
exec ./bin/mantis -- signature-validator "$@"

0 commit comments

Comments
 (0)