diff --git a/drush/provision_git.drush.inc b/drush/provision_git.drush.inc
index 4367470..271e75f 100644
--- a/drush/provision_git.drush.inc
+++ b/drush/provision_git.drush.inc
@@ -562,10 +562,10 @@ function provision_git_provision_drupal_create_directories_alter(&$mkdir, $url)
 function provision_git_provision_platform_sync_path_alter(&$sync_path) {
 
   if (d()->type == 'site') {
-    $repo_path = d()->platform->repo_path;
+    $repo_path = d()->platform->repo_path ?? d()->platform->composer_git_path;
   }
   elseif (d()->type == 'platform') {
-    $repo_path = d()->repo_path;
+    $repo_path = d()->repo_path ?? d()->composer_git_path;
   }
   else {
     return;
