Browse Source

Adjusted git land command to leverage psudoterminal

Jason Crist 3 years ago
parent
commit
b7e764138b
1 changed files with 1 additions and 5 deletions
  1. 1 5
      theme-utils.mjs

+ 1 - 5
theme-utils.mjs

@@ -220,11 +220,7 @@ async function checkForDeployability(){
  This is the git version of that action.
 */
 async function landChangesGit(diffId){
-	return await executeOnSandbox(`
-		cd ${sandboxPublicThemesFolder};
-		arc patch ${diffId}
-		arc land
-	`, true);
+	return await executeOnSandbox(`cd ${sandboxPublicThemesFolder};arc patch ${diffId};arc land;exit;`, true, true);
 }
 
 /*