mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 10:53:37 +00:00
21 lines
371 B
Bash
21 lines
371 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# build translations.
|
||
|
php /sites/tools/firefly-iii-tools/cli.php ff3:json-translations --v2
|
||
|
|
||
|
# remove old stuff
|
||
|
rm -rf public/
|
||
|
rm -rf ../public/fonts
|
||
|
rm -rf ../public/v2/js
|
||
|
rm -rf ../public/v2/css
|
||
|
|
||
|
# build new stuff
|
||
|
npm run prod
|
||
|
|
||
|
# move to right directory
|
||
|
mv public/js ../public/v2
|
||
|
mv public/css ../public/v2
|
||
|
|
||
|
# also copy fonts
|
||
|
cp -r fonts ../public
|