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

Commit

Permalink
add a package script
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandresalome committed Jul 31, 2016
1 parent 3d42fb9 commit f5cfd29
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions bin/package
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash
set -e
cd "`dirname "$0"`"/..

composer install -o --no-dev

mkdir -p cache
rm -rf cache/*
rm -rf web/downloads/*

tar -cvzf package.tgz \
bin/conf.py \
bin/doc-cache.sh \
bin/pack.sh \
cache \
src \
vendor \
views \
web \
console

0 comments on commit f5cfd29

Please sign in to comment.