Skip to content
This repository was archived by the owner on Apr 12, 2020. It is now read-only.
/ website Public archive

Commit f5cfd29

Browse files
author
alexandresalome
committed
add a package script
1 parent 3d42fb9 commit f5cfd29

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: bin/package

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/bash
2+
set -e
3+
cd "`dirname "$0"`"/..
4+
5+
composer install -o --no-dev
6+
7+
mkdir -p cache
8+
rm -rf cache/*
9+
rm -rf web/downloads/*
10+
11+
tar -cvzf package.tgz \
12+
bin/conf.py \
13+
bin/doc-cache.sh \
14+
bin/pack.sh \
15+
cache \
16+
src \
17+
vendor \
18+
views \
19+
web \
20+
console

0 commit comments

Comments
 (0)