Skip migrating collections that has a missing remote project instead of cancelling the migration (#3973)

This commit is contained in:
David Marby
2021-08-30 18:18:21 +02:00
committed by GitHub
parent e6e9e2a748
commit 665abdcedc

View File

@@ -53,7 +53,7 @@ export const migrateCollectionsIntoRemoteProject = async (vcs: VCS) => {
const remoteBackendProject = findRemoteBackendProject(collection);
if (!remoteBackendProject) {
return;
continue;
}
let remoteProject = findRemoteProjectByTeam(remoteBackendProject.team);