mirror of
https://github.com/DerTyp7/better-teamspeak-theme.git
synced 2025-10-28 12:22:13 +01:00
17 lines
260 B
Bash
17 lines
260 B
Bash
#!/bin/bash
|
|
|
|
bash clean_dev_env.sh
|
|
./build.sh
|
|
|
|
# Copy files from dist folder to root folder
|
|
cp -r dist/* .
|
|
|
|
|
|
echo "# START AUTOGENERATED" >> .gitignore
|
|
|
|
for file in dist/*; do
|
|
echo "${file#dist/}" >> .gitignore
|
|
done
|
|
|
|
echo "# END AUTOGENERATED" >> .gitignore
|