I've never had this happen myself but I've got a couple of questions for you:
- where do you run the script from?
- can you please show us the content of your sbt script?
Thanks,
-Fred
> --
> You received this message because you are subscribed to the Google Groups "simple-build-tool" group.
> To post to this group, send email to simple-b...@googlegroups.com.
> To unsubscribe from this group, send email to simple-build-t...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/simple-build-tool?hl=en.
>
>
It looks from the stack trace like the permissions issue is coming up
when trying to create a file to serve as a lock. Someone more familiar
with SBT internals may have an idea of where that file is already, but
you can find out for yourself directly with a command like this (I
think):
$ dtruss -f -t open sbt
(I don't actually have a Mac handy to test, which it sounds like
you're using; on Linux I'd do "strace -f -e open sbt".)
That should observe all the 'open' system calls SBT is making,
including the one that fails, which should tell you what you need to
fix the permissions on.
HTH,
Greg
It looks from the stack trace like the permissions issue is coming up
when trying to create a file to serve as a lock.
>>