소스 검색

Adjusted git land command to leverage psudoterminal

Jason Crist 3 년 전
부모
커밋
b7e764138b
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  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);
 }
 
 /*