mapguesser/scripts/update.sh

17 lines
369 B
Bash
Raw Normal View History

#!/bin/bash
ROOT_DIR=$(dirname $(readlink -f "$0"))/..
. ${ROOT_DIR}/.env
echo "Installing Composer packages..."
(cd ${ROOT_DIR} && composer install)
2020-06-01 20:42:37 +02:00
echo "Installing Yarn packages..."
(cd ${ROOT_DIR}/public/static && yarn install)
if [ -z "${DEV}" ] || [ "${DEV}" -eq "0" ]; then
echo "Minifying JS, CSS and SVG files..."
${ROOT_DIR}/scripts/minify.sh
fi