From 92c7b73d9e33ca14ccb5bc60255391e245a54db6 Mon Sep 17 00:00:00 2001 From: m5r Date: Fri, 1 Oct 2021 23:06:57 +0200 Subject: [PATCH] use correct env variable to skip husky installation in fly.toml --- fly.dev.toml | 2 +- fly.prod.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fly.dev.toml b/fly.dev.toml index a3adb78..ad01ef7 100644 --- a/fly.dev.toml +++ b/fly.dev.toml @@ -9,7 +9,7 @@ processes = [] [build.args] QUIRREL_BASE_URL = "dev.shellphone.app" - HUSKY_SKIP_INSTALL = 1 + HUSKY = 0 [env] NODE_ENV = "production" diff --git a/fly.prod.toml b/fly.prod.toml index 6705778..8f7e72a 100644 --- a/fly.prod.toml +++ b/fly.prod.toml @@ -9,7 +9,7 @@ processes = [] [build.args] QUIRREL_BASE_URL = "www.shellphone.app" - HUSKY_SKIP_INSTALL = 1 + HUSKY = 0 [env] NODE_ENV = "production"