ensure ./n exists

This commit is contained in:
Iris Lightshard 2021-10-13 09:49:56 -06:00
parent 603c9158a3
commit ea7af0837f
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

View file

@ -3,6 +3,10 @@
ADDR=209.141.55.64
PORT=5460
if [ ! -d ./n ]; then
mkdir ./n
fi
# start the 9p client and wait for it to initialize
9pfuse "tcp!${ADDR}!${PORT}" ./n & sleep 1