This repository has been archived on 2020-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
codesite/mkdist.sh

15 lines
236 B
Bash
Raw Normal View History

2015-04-04 06:41:09 +00:00
#!/bin/bash
set -eu
tar cJvf "codesite-$(date +%s).tar.xz" \
2017-04-23 07:23:55 +00:00
--exclude='sites/codesite.example.com/wwwroot' \
rebuild.sh \
sites/codesite.example.com \
static \
lib \
2015-04-04 06:41:09 +00:00
--owner=0 --group=0
read -p "Press any key to continue..."
2017-04-23 07:23:55 +00:00