mirror of
https://github.com/HeyPuter/puter.git
synced 2025-02-02 14:18:43 +08:00
fix: --onlycase param broke cartesian tests
This commit is contained in:
parent
f359ae193e
commit
d9822a4f09
@ -35,7 +35,7 @@ try {
|
|||||||
unit,
|
unit,
|
||||||
}, positionals: [id] } = parsed);
|
}, positionals: [id] } = parsed);
|
||||||
|
|
||||||
onlycase = Number.parseInt(onlycase);
|
onlycase = onlycase !== undefined ? Number.parseInt(onlycase) : undefined;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
console.error(
|
console.error(
|
||||||
|
Loading…
Reference in New Issue
Block a user