From 2e8a71bf311b8a98ea987bcf53846d476f4089c6 Mon Sep 17 00:00:00 2001 From: David Wales Date: Mon, 5 May 2014 17:05:41 +1000 Subject: [PATCH] Update build-osx.md: Add mkdir mkdir line added in line 97 to prevent the following error: -bash: /Users/dwales/.twister/twister.conf: No such file or directory --- doc/build-osx.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/build-osx.md b/doc/build-osx.md index e59b5d75..3461cb1e 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -94,6 +94,7 @@ directory. We have to first create the RPC configuration file, though. Run `./twisterd` to get the filename where it should be put, or just try these commands: + mkdir -p "/Users/${USER}/.twister" echo -e "rpcuser=user\nrpcpassword=pwd\nrpcallowip=127.0.0.1" > "/Users/${USER}/.twister/twister.conf" chmod 600 "/Users/${USER}/.twister/twister.conf"