12 lines
No EOL
307 B
Bash
Executable file
12 lines
No EOL
307 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Remove all files in staticfiles except .gitkeep
|
|
if [ -d "staticfiles" ]; then
|
|
find staticfiles -type f ! -name '.gitkeep' -delete
|
|
find staticfiles -type d -empty -delete
|
|
fi
|
|
|
|
# Build the tailwind theme css
|
|
cd src/pkmntrade_club/theme/static_src
|
|
npm install . && npm run build
|
|
cd ../../ |