Skip to content

Commit

Permalink
fix(npm/src/index.js): fix spawmArgs check
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Apr 6, 2023
1 parent 3589b86 commit cc56ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion npm/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const firstTimeExperienceSetup = async () => {
)
}

if (spawnArgs != null) {
if (spawnArgs.length) {
console.log("# Checking build dependencies...")
// @ts-ignore
const child = spawn(...spawnArgs)
Expand Down

0 comments on commit cc56ae9

Please sign in to comment.