We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f00b453 commit 710acecCopy full SHA for 710acec
src/utils/getPackageUpgradeInput.ts
@@ -17,7 +17,7 @@ export function handlePackageUpgradeInput(
17
const inputValue = packageUpgradeConfig.inputs[inputName];
18
19
// check if input has value
20
- if (!inputValue) return false;
+ if (inputValue == null) return false;
21
22
// set input value to variables
23
variables.set(inputName, inputValue);
0 commit comments