From 0a9517ff9116d35d91fb4369d51e7b0a0cceb6e0 Mon Sep 17 00:00:00 2001 From: Nulo Date: Mon, 17 Jul 2023 16:09:02 -0300 Subject: [PATCH] Justfile: prefer offline --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index abf2c3c..7ea3af8 100644 --- a/Justfile +++ b/Justfile @@ -7,7 +7,7 @@ _run command: build_builder_image podman run -it --rm \ -v ".:/sitio:Z" --workdir /sitio \ {{builder}} sh -c "{{command}}" -run command: (_run "pnpm install") (_run command) +run command: (_run "pnpm install --prefer-offline") (_run command) build: (run './tool build') check: (run './tool check')