Skip to content

Commit 14b20e5

Browse files
committed
That linter though...
1 parent bc40888 commit 14b20e5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lifecycleScripts/submodules/index.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,13 @@ module.exports = function submodules() {
6868
.reduce(function(chainPromise, submoduleToUpdate) {
6969
return chainPromise
7070
.then(function() {
71-
console.log("[nodegit] Initializing submodule", submoduleToUpdate.name);
71+
console.log(
72+
"[nodegit] Initializing submodule",
73+
submoduleToUpdate.name
74+
);
7275
return exec(
73-
"git submodule update --init --recursive " + submoduleToUpdate.name
76+
"git submodule update --init --recursive " +
77+
submoduleToUpdate.name
7478
);
7579
});
7680
}, Promise.resolve());

0 commit comments

Comments
 (0)