mfikes / ambly

ClojureScript REPL into embedded JavaScriptCore
http://ambly.fikesfarm.com
Eclipse Public License 1.0
540 stars 21 forks source link

"umount" exception #101

Closed coyotespike closed 9 years ago

coyotespike commented 9 years ago

I was following along with the demo project. After I run script/repl and choose 1, I get java.io.IOException: Cannot run program "umount": error=2, No such file or directory.

I'm on OSX - is this a linux command, or am I missing a key package? The app itself runs in the simulator, but with this error the REPL won't connect.

mfikes commented 9 years ago

@coyotespike Please try running umount directly from within the terminal. If it works, umount by itself will simply print usage information. It is installed in /sbin/umount so my hunch is your shell doesn't have /sbin in its path.

coyotespike commented 9 years ago

Yes, I get umount: command not found, so probably you're right. I'll check into my path.

coyotespike commented 9 years ago

Thanks Mike - I added export PATH=/sbin:$PATH to my .bashrc, and it fixed it! Next in my sights, mount_webdav ;-)