mirror of
https://github.com/urbit/shrub.git
synced 2024-12-15 04:22:48 +03:00
b8ad859dbf
urbit: /lib/x86_64-linux-gnu/libtinfo.so.5: no version information available (required by urbit)
33 lines
995 B
Plaintext
33 lines
995 B
Plaintext
require! \stream-snitch
|
|
pty = require \pty.js
|
|
|
|
urbit =
|
|
# TODO abort on failure
|
|
pty.spawn './urbit' <[-B urbit.pill -A .. -cFI zod zod]>
|
|
.on \data -> process.stdout.write it
|
|
|
|
urbit.on \exit (code)->
|
|
console.log "\nnode: urbit exited with code #code\n"
|
|
process.exit code
|
|
|
|
console.log "FIXME Running Ubuntu 14.04, which causes a libtinfo version info warning. Should update to 16.04.\n"
|
|
|
|
fin = no
|
|
urbit.pipe (new stream-snitch /dojo> /g).on \match ->
|
|
return if fin
|
|
fin := yes
|
|
console.log "\n\n---\nnode: got dojo!\n---\n\n"
|
|
set-timeout (-> process.exit 0), 1000 # should probably test further
|
|
|
|
urbit.pipe (new stream-snitch /\n(\/~|ford: )/g).on \match ->
|
|
return if fin
|
|
fin := yes
|
|
console.log "\n\n---\nnode: detected error\n---\n\n"
|
|
set-timeout (-> process.exit 1), 1000
|
|
|
|
set-timeout ...
|
|
-> console.log "\n\n---\nnode: timed out after 5 min\n---"
|
|
5*60000
|
|
|
|
process.on \exit -> urbit.write '\04' # send EOF to gracefully checkpoint
|