mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
823843eadb
ARCH=native fixes SIGILL issues on other amd64 processors. Static library dependencies where supported. Package libunbound2 in the snap.
12 lines
285 B
Bash
Executable file
12 lines
285 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
export LD_LIBRARY_PATH=${SNAP_LIBRARY_PATH}:${SNAP}/usr/lib/x86_64-linux-gnu
|
|
export HOME=${SNAP_DATA}
|
|
cd ${SNAP_DATA}
|
|
|
|
ARGS=
|
|
if [ -e "${SNAP_DATA}/etc/monerod.conf" ]; then
|
|
ARGS="--config-file ${SNAP_DATA}/etc/monerod.conf"
|
|
fi
|
|
|
|
exec ${SNAP}/bin/monerod --detach $ARGS
|