dsp/autoupdate
2015-10-18 23:06:39 -07:00

26 lines
463 B
Bash
Executable File

#!/usr/bin/env zsh
set -e
alias db="dropbox_uploader"
rm -r lib
db download py/lib >/dev/null
if [ ! -d .git ]; then
git init >/dev/null
[ -e version ] && rm version
git add .gitignore '*' '**/*'
else
git add -u || echo "nothing new?"
fi
if [ -s version ]; then
read -r version < version
else
version=0
fi
let version++ || true # -e mode doesn't like this normally
echo $version > version
git commit -m "update $version" . >/dev/null