mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
9 lines
226 B
Plaintext
9 lines
226 B
Plaintext
|
#!/bin/sh
|
||
|
echo "Running preinstall" > /tmp/lokinet_preinstall.log
|
||
|
if [ ! -d "$HOME/.lokinet" ]
|
||
|
then
|
||
|
mkdir $HOME/.lokinet >> /tmp/lokinet_preinstall.log
|
||
|
fi
|
||
|
find $HOME/.lokinet >> /tmp/lokinet_preinstall.log
|
||
|
exit 0 # all good
|