Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit d07a3f1

Browse files
also add message for iOS #721
1 parent 22aacd5 commit d07a3f1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

publish/scripts/installer.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ module.exports = function($logger, $projectData, hookArgs) {
627627
if (fs.existsSync(sourceGoogleJson) && fs.existsSync(path.dirname(destinationGoogleJson))) {
628628
$logger.out("Copy " + sourceGoogleJson + " to " + destinationGoogleJson + ".");
629629
fs.writeFileSync(destinationGoogleJson, fs.readFileSync(sourceGoogleJson));
630-
resolve()
630+
resolve();
631631
} else {
632632
$logger.warn("Unable to copy google-services.json.");
633633
reject();
@@ -637,6 +637,8 @@ module.exports = function($logger, $projectData, hookArgs) {
637637
if (!fs.existsSync(sourceGooglePlist)) {
638638
$logger.warn(sourceGooglePlist + " does not exist. Please follow the installation instructions from the documentation");
639639
return reject();
640+
} else {
641+
resolve();
640642
}
641643
} else {
642644
resolve();

0 commit comments

Comments
 (0)