sbt's scala incremental compiler
I have downloaded zinc and run
sbt universal:packageZipTarball
per the (sparse ..) README.md
Afterwards we see a "zinc" binary here:
$ find . -name zinc -executable -type f
./src/universal/bin/zinc
So trying to run this:
src/universal/bin/zinc -scala-home /home/ubuntu/scala-2.11.7 -nailed -start
Gives a loop that finally bails:
+ attempts=31
+ sleep 0.1
+ check_port 3030
+ can_netcat
+ type -P nc
+ check_port_netcat 3030
+ nc -z -n -w 1 127.0.0.1 3030
+ [[ 31 -eq 0 ]]
+ attempts=30
+ sleep 0.1
+ check_port 3030
+ can_netcat
+ type -P nc
+ check_port_netcat 3030
.. etc until attempts reaches 0 ait which point:
+ return 1
+ exitcode=1
+ false
+ exit 1
I also tried running this via sudo - no difference. so .. what is the magic to get zinc to start? I am on ubuntu.
Source: (StackOverflow)