mirror of
https://github.com/ruikurenaii/performium.git
synced 2026-07-22 12:50:33 +00:00
12 lines
No EOL
211 B
Bash
Executable file
12 lines
No EOL
211 B
Bash
Executable file
#!/bin/bash
|
|
npm run build
|
|
|
|
if [ ! -d 'performium' ]; then
|
|
mkdir 'performium'
|
|
fi
|
|
|
|
cp styles.css performium/styles.css
|
|
cp manifest.json performium/manifest.json
|
|
mv build/main.js performium/main.js
|
|
|
|
rmdir 'build' |