Skip to content

Commit d6ae64a

Browse files
committed
Add build script
1 parent c4afffa commit d6ae64a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

build/build_release.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
pushd $(dirname $0)
3+
cd ..
4+
5+
composer install
6+
7+
mkdir dist/
8+
cp bin dist/ -R
9+
cp src dist/ -R
10+
cp vendor dist/ -R
11+
cp LICENSE dist/
12+
cp README.md dist/
13+
zip dist.zip -r dist
14+
rm -rf dist/
15+
16+
popd

0 commit comments

Comments
 (0)