mirror of
https://github.com/ruikurenaii/performium.git
synced 2026-07-22 05:49:42 +00:00
18 lines
No EOL
352 B
Bash
18 lines
No EOL
352 B
Bash
#!/bin/bash
|
|
npm run build
|
|
|
|
if [ ! -d 'performium' ]; then
|
|
mkdir 'performium'
|
|
echo 'Directory created: performium'
|
|
fi
|
|
|
|
mv build/main.js performium/main.js
|
|
cp styles.css performium/styles.css
|
|
cp manifest.json performium/manifest.json
|
|
|
|
echo 'Moved files to directory: performium'
|
|
|
|
rmdir 'build'
|
|
|
|
echo 'Directory removed: build'
|
|
echo 'Build Successful' |