From 61d5fef1d2cb0be4c913b2e657917d92b51cc558 Mon Sep 17 00:00:00 2001 From: inhji Date: Tue, 21 Mar 2023 08:43:19 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Escripts/build.sh=E2=80=9C=20=C3=A4nder?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/build.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 52d2dde..2229013 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,22 +1,22 @@ #!/usr/bin/env bash echo "Pulling latest changes.." -git pull > /dev/null +git pull echo "Updating mix dependencies.." -mix deps.get --only prod > /dev/null +mix deps.get --only prod echo "Compiling mix dependencies.." -MIX_ENV=prod mix compile > /dev/null +MIX_ENV=prod mix compile echo "Setting up assets.." -MIX_ENV=prod mix assets.setup > /dev/null +MIX_ENV=prod mix assets.setup echo "Compiling assets.." -MIX_ENV=prod mix assets.deploy > /dev/null +MIX_ENV=prod mix assets.deploy echo "Generating release.." -MIX_ENV=prod mix release --overwrite > /dev/null +MIX_ENV=prod mix release --overwrite echo "Restarting application.." systemctl --user restart chiya