mirror of
https://github.com/PurpleI2P/i2pd-snap
synced 2025-02-05 19:24:20 +00:00
10 lines
212 B
Plaintext
10 lines
212 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -d "$SNAP_USER_DATA/.i2pd" ]; then
|
||
|
mkdir $SNAP_USER_DATA/.i2pd/
|
||
|
cp -R $SNAP/certificates $SNAP_USER_DATA/.i2pd/
|
||
|
cp -R $SNAP/i2pd.conf $SNAP_USER_DATA/.i2pd/
|
||
|
fi
|
||
|
|
||
|
exec "$SNAP/bin/i2pd" "$@"
|