17 lines
260 B
Bash
17 lines
260 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
mkdir -p "build/Custom Web Tools"
|
||
|
|
|
||
|
|
cp plugin.js "build/Custom Web Tools/plugin.js"
|
||
|
|
cp package.json "build/Custom Web Tools/package.json"
|
||
|
|
|
||
|
|
rm CustomWebTools*.zip
|
||
|
|
|
||
|
|
cd build
|
||
|
|
|
||
|
|
zip -r ../CustomWebTools.v1.1.0.zip "Custom Web Tools"
|
||
|
|
|
||
|
|
cd ..
|
||
|
|
|
||
|
|
rm -r build
|