Skip to content

Commit

Permalink
Add build script
Browse files Browse the repository at this point in the history
  • Loading branch information
ganlvtech committed Mar 1, 2019
1 parent c4afffa commit d6ae64a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build/build_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
pushd $(dirname $0)
cd ..

composer install

mkdir dist/
cp bin dist/ -R
cp src dist/ -R
cp vendor dist/ -R
cp LICENSE dist/
cp README.md dist/
zip dist.zip -r dist
rm -rf dist/

popd

0 comments on commit d6ae64a

Please sign in to comment.