forked from filipg/gonito
12 lines
179 B
Bash
Executable File
12 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DATESTAMP=`date +%Y-%m-%d`
|
|
PACKAGE=gonito-$DATESTAMP.tar.gz
|
|
|
|
echo $PACKAGE
|
|
|
|
stack install
|
|
cp ~/.local/bin/gonito .
|
|
tar zvcf $PACKAGE gonito config/ static/
|
|
rm gonito
|