You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
340 B
11 lines
340 B
#! /bin/bash
|
|
|
|
JS_PATH=/home/bsk/acapp/game/static/js/
|
|
JS_PATH_DIST=${JS_PATH}dist/
|
|
JS_PATH_SRC=${JS_PATH}src/
|
|
|
|
#find $JS_PATH_SRC -type f -name '*.js' | sort | xargs cat | terser -c -m > ${JS_PATH_DIST}game.js
|
|
find $JS_PATH_SRC -type f -name '*.js' | sort | xargs cat > ${JS_PATH_DIST}game.js
|
|
echo yes | python3 manage.py collectstatic
|
|
|