mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d "$SNAP_USER_DATA/etc" ]; then
|
|
mkdir $SNAP_USER_DATA/etc/
|
|
cp -R $SNAP/etc/monerod.conf $SNAP_USER_DATA/etc/monerod.conf
|
|
fi
|
|
|
|
exec "$SNAP/bin/monerod" "$@"
|