Skip to content

Commit 710acec

Browse files
author
Murat
committed
fix: fix input value null check
1 parent f00b453 commit 710acec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/getPackageUpgradeInput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function handlePackageUpgradeInput(
1717
const inputValue = packageUpgradeConfig.inputs[inputName];
1818

1919
// check if input has value
20-
if (!inputValue) return false;
20+
if (inputValue == null) return false;
2121

2222
// set input value to variables
2323
variables.set(inputName, inputValue);

0 commit comments

Comments
 (0)