1
0
Fork 0

Autocommitted updated scripts from mari-wovn

main
Mari 5 years ago
parent c299ecc079
commit e12fc7642a
  1. 6
      per-host/mari-wovn/.bash_aliases

@ -80,19 +80,19 @@ function wovn_install() {
printf "=== Installing Ruby dependencies...\n" printf "=== Installing Ruby dependencies...\n"
bundle install || exit "$?" bundle install || exit "$?"
fi fi
if ! yarn install --offline --check-files --silent; then if ! yarn install --offline --check-files --no-progress --ignore-optional --silent; then
printf "=== Installing Javascript dependencies in top level...\n" printf "=== Installing Javascript dependencies in top level...\n"
yarn install || exit "$?" yarn install || exit "$?"
fi fi
cd widget || exit "$?" cd widget || exit "$?"
if ! yarn install --offline --check-files --silent; then if ! yarn install --offline --check-files --no-progress --ignore-optional --silent; then
printf "=== Installing Javascript dependencies in widget...\n" printf "=== Installing Javascript dependencies in widget...\n"
yarn install || exit "$?" yarn install || exit "$?"
yarn build || exit "$?" yarn build || exit "$?"
fi fi
cd .. || exit "$?" cd .. || exit "$?"
cd front || exit "$?" cd front || exit "$?"
if ! yarn install --offline --check-files --silent; then if ! yarn install --offline --check-files --no-progress --ignore-optional --silent; then
printf "=== Installing Javascript dependencies in front...\n" printf "=== Installing Javascript dependencies in front...\n"
yarn install yarn install
fi fi

Loading…
Cancel
Save