diff --git a/bin/now-scale.js b/bin/now-scale.js index 115f5f6..85b7c3f 100755 --- a/bin/now-scale.js +++ b/bin/now-scale.js @@ -166,10 +166,6 @@ async function run({ token, config: { currentTeam } }) { error(`Could not find any deployments matching ${id}`) return process.exit(1) } - if (match.type === 'STATIC') { - error(`Could not scale static deployment: ${id}`) - return process.exit(1) - } const { min, max } = guessParams() @@ -181,6 +177,15 @@ async function run({ token, config: { currentTeam } }) { return exit(1) } + if (match.type === 'STATIC') { + if (min === 0 && max === 0) { + error("Static deployments can't be FROZEN. Use `now rm` to remove") + return process.exit(1) + } + console.log('> Static deployments are automatically scaled!') + return process.exit(0) + } + const { max: currentMax, min: currentMin,