diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-02-01 17:23:10 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-02-01 17:23:10 -0500 |
commit | e8818c1cadc00da752d2314333254d17b7ba5979 (patch) | |
tree | 40da977013a6eb29103d1dadf305163370226520 /Bastillefile | |
parent | 69614b2d1024196f24611572ff9acf66720d472d (diff) | |
download | carpentertutoring-e8818c1cadc00da752d2314333254d17b7ba5979.tar.xz carpentertutoring-e8818c1cadc00da752d2314333254d17b7ba5979.zip |
removed curl in favor of fetch(1)
Diffstat (limited to 'Bastillefile')
-rw-r--r-- | Bastillefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bastillefile b/Bastillefile index 832ca3d..7a30a6c 100644 --- a/Bastillefile +++ b/Bastillefile @@ -1,8 +1,8 @@ CMD mkdir -p /var/www && echo Created /var/www -PKG lighttpd rust curl gmake +PKG lighttpd rust gmake OVERLAY usr CMD CARGO_HOME=/tmp cargo install --root /usr/local cobalt-bin -CMD curl -kf http://192.168.1.50:3000/53hornet/carpentertutoring/archive/master.tar.gz -o /tmp/master.tar.gz +CMD fetch -o /tmp http://192.168.1.50:3000/53hornet/carpentertutoring/archive/master.tar.gz CMD tar -xzvf /tmp/master.tar.gz -C /tmp CMD cd /tmp/carpentertutoring ; cobalt build --destination /var/www SYSRC lighttpd_enable=YES |