diff --git a/scripts/src/sync-repos.ts b/scripts/src/sync-repos.ts index 3cdc1a3dd..a49edf74d 100644 --- a/scripts/src/sync-repos.ts +++ b/scripts/src/sync-repos.ts @@ -5,14 +5,14 @@ export default async function() { const monorepoDir = process.cwd() const gitSubrepoBin = joinPaths(monorepoDir, 'scripts/bin/git-subrepo.sh') // TODO: DRY - // Try... - await execLive([gitSubrepoBin, 'fetch', '--all']) - - console.log('TEST!!!...') - await execLive('git rev-list --reverse --ancestry-path --topo-order 290b11a7f965b5211ce9caf9df451fdf6fe1791e..HEAD') + // // Try... + // await execLive([gitSubrepoBin, 'fetch', '--all']) + // + // console.log('TEST!!!...') + // await execLive('git rev-list --reverse --ancestry-path --topo-order 290b11a7f965b5211ce9caf9df451fdf6fe1791e..HEAD') // Push to subrepos. Will fail if our copies are not up-to-date - await execLive([gitSubrepoBin, 'push', '--all', '--debug']) + await execLive([gitSubrepoBin, 'push', '--all', '--DEBUG']) // Push the git-subrepo meta-file updates back to our remote await execLive(['git', 'push'])