From ea7af0837f7a128e0202ec5fb96ab00923d4b4f0 Mon Sep 17 00:00:00 2001 From: Derek Stevens Date: Wed, 13 Oct 2021 09:49:56 -0600 Subject: [PATCH] ensure ./n exists --- uxn-client/uxn-xrxs.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/uxn-client/uxn-xrxs.sh b/uxn-client/uxn-xrxs.sh index 94e026c..64eb76c 100755 --- a/uxn-client/uxn-xrxs.sh +++ b/uxn-client/uxn-xrxs.sh @@ -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