Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit cd7ea25

Browse files
authored
fix(ns-bundle): add missing return (#167)
1 parent 8e7a1b3 commit cd7ea25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: bin/ns-bundle

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function gradlewClean() {
8383
const platformsPath = pathResolve(PROJECT_DIR, "platforms", "android")
8484
const gradlew = pathResolve(platformsPath, "gradlew");
8585
if (!existsSync(gradlew)) {
86-
resolve();
86+
return resolve();
8787
}
8888

8989
spawnChildProcess(gradlew, "-p", platformsPath, "clean")

0 commit comments

Comments
 (0)