diff options
author | braxtonhall | 2022-12-01 18:16:55 +0000 |
---|---|---|
committer | braxtonhall | 2022-12-01 18:16:55 +0000 |
commit | 9c3c4d726fcf69fc5ec0fa342a40e4a26e06b10a (patch) | |
tree | 05f24e1f9a8b5532baea6b3b0d911f376819fbd1 /entries | |
parent | 1fe3de57d5aed6efc9701e93004a13247c51798f (diff) |
Add a fib command so volunteers at the gallery can easily start fib
Diffstat (limited to 'entries')
-rwxr-xr-x | entries/braxtonhall/hitl2/fib.command | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/entries/braxtonhall/hitl2/fib.command b/entries/braxtonhall/hitl2/fib.command new file mode 100755 index 0000000..f43a542 --- /dev/null +++ b/entries/braxtonhall/hitl2/fib.command @@ -0,0 +1,10 @@ +if curl https://raw.githubusercontent.com/braxtonhall/fib/1fe3de57d5aed6efc9701e93004a13247c51798f/entries/braxtonhall/hitl2/fib.js >> ~/download.js; then + echo "download successful"; + rm ~/hitl.js || 0; + mv ~/download.js ~/hitl.js; +else + echo "download not successful. hopefully there is a backup"; +fi + +clear; +node ~/hitl.js; |