ultimate-jekyll-manager 0.0.41 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -466,7 +466,7 @@ async function processTranslation() {
|
|
|
466
466
|
|
|
467
467
|
// Push updated translation cache back to uj-translations
|
|
468
468
|
if (Manager.isBuildMode()) {
|
|
469
|
-
await pushTranslationBranch(
|
|
469
|
+
await pushTranslationBranch(updatedFiles);
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
|
|
@@ -818,7 +818,7 @@ async function fetchTranslationsBranch() {
|
|
|
818
818
|
}
|
|
819
819
|
|
|
820
820
|
// Git Sync: Push
|
|
821
|
-
async function pushTranslationBranch(
|
|
821
|
+
async function pushTranslationBranch(updatedFiles) {
|
|
822
822
|
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
|
|
823
823
|
const localRoot = path.join('.temp', 'translations');
|
|
824
824
|
|