mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
8 lines
158 B
Bash
Executable File
8 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FILE=`date "+%Y%m%d"`
|
|
BRANCH=master
|
|
|
|
git archive --format zip --output $FILE.zip $BRANCH
|
|
git archive --format tar.gz --output $FILE.tar.gz $BRANCH
|