11 lines
175 B
Bash
11 lines
175 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -x @bindir@/vn-updater-gui ]
|
||
|
then
|
||
|
echo "Running updater..."
|
||
|
@bindir@/vn-updater-gui
|
||
|
fi
|
||
|
|
||
|
export LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN=1
|
||
|
exec @bindir@/hedera-bin
|