diff options
author | Braxton Hall | 2022-12-02 00:21:25 +0000 |
---|---|---|
committer | GitHub | 2022-12-02 00:21:25 +0000 |
commit | ea21a343d407bda33e5b4dfbeb711a975a5aa4e6 (patch) | |
tree | ce1d801ffbb93ccaa2f710be3f5417e34f56c252 /entries/braxtonhall/hitl2/fib.command | |
parent | d8e6768c0670aee39db801a33fdeea39510123a4 (diff) | |
parent | a743c494a7fd3fd0d3766e53c337a22ed6550beb (diff) |
Merge pull request #90 from braxtonhall/hitl2
The actual exhibition!
Diffstat (limited to 'entries/braxtonhall/hitl2/fib.command')
-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; |