I've modify the place where I inserted code to minimize the number of files touched. (#131)

This commit is contained in:
Max Pedraza 2021-12-04 09:03:56 +01:00 committed by GitHub
parent e74a3a808f
commit 1da9b8418e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 3 deletions

View file

@ -4,7 +4,9 @@ set -e
DIR=$(dirname "$0")
# install node modules
yarn install --pure-lockfile --production
YARN=yarn
[ -x /usr/bin/lsb_release ] && [ -n "`lsb_release -i | grep Debian`" ] && YARN=yarnpkg
$YARN install --pure-lockfile --production
# Copy admin-lte dist
mkdir -p "${DIR}/assets/dist/js" "${DIR}/assets/dist/css" && \