From c03c08788df582258292658c1f1c2f30f64bb755 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 16 Oct 2025 09:43:10 +0100 Subject: [PATCH] Replace `mix do` with commas and use plus signs --- Dockerfile | 2 +- scripts/dev/outdated | 2 +- scripts/dev/update | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef20ecce..1805c609 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,7 @@ COPY assets assets RUN npm ci --prefix assets # Compile the release and assets -RUN mix do compile, assets.deploy +RUN mix do compile + assets.deploy # Make sure stacktraces are complete RUN mix sentry.package_source_code diff --git a/scripts/dev/outdated b/scripts/dev/outdated index 2da1798b..bbd89e2b 100755 --- a/scripts/dev/outdated +++ b/scripts/dev/outdated @@ -15,7 +15,7 @@ npm outdated --prefix assets debug_msg "Checking outdated tooling (tailwind, esbuild, sqlean)..." # shellcheck disable=SC1010 -mix do tailwind.check_version, esbuild.check_version, sqlean.check_version +mix do tailwind.check_version + esbuild.check_version + sqlean.check_version debug_msg "Checking outdated mix dependencies" diff --git a/scripts/dev/update b/scripts/dev/update index 37599a72..5423e11c 100755 --- a/scripts/dev/update +++ b/scripts/dev/update @@ -15,7 +15,7 @@ npm update --prefix assets debug_msg "Updating tooling (tailwind, esbuild, sqlean)..." # shellcheck disable=SC1010 -mix do tailwind.update_version, esbuild.update_version, sqlean.update_version +mix do tailwind.update_version + esbuild.update_version + sqlean.update_version debug_msg "Updating mix dependencies"