Add tar of stage

This commit is contained in:
Jeremy Soller 2016-10-31 13:59:39 -06:00
parent c3fb764940
commit 4ab7175896
2 changed files with 10 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
build
stage
stage.tar

11
cook.sh
View File

@ -27,6 +27,9 @@ then
fetch)
git clone --recursive "$GIT" build
;;
unfetch)
rm -rf build
;;
stage)
mkdir -p stage/bin
cd build
@ -36,8 +39,12 @@ then
unstage)
rm -rf stage
;;
unfetch)
rm -rf build
tar)
cd stage
tar cf ../stage.tar .
;;
untar)
rm -rf stage.tar
;;
update)
cd build