mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-27 07:14:18 +08:00
Add tar of stage
This commit is contained in:
parent
c3fb764940
commit
4ab7175896
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
build
|
||||
stage
|
||||
stage.tar
|
||||
|
||||
11
cook.sh
11
cook.sh
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user