浏览代码

Fixed the path to arc on deploy action

Jason Crist 3 年之前
父节点
当前提交
8fdc99d1f4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      theme-utils.mjs

+ 1 - 1
theme-utils.mjs

@@ -299,7 +299,7 @@ async function checkForDeployability(){
  This is the git version of that action.
 */
 async function landChangesGit(diffId){
-	return executeCommand(`ssh -tt -A ${remoteSSH} "cd ${sandboxPublicThemesFolder}; ~/.arcanist-wpcom-git/bin/arc patch ${diffId}; ~/.arcanist-wpcom-git/bin/arc land; exit;"`, true);
+	return executeCommand(`ssh -tt -A ${remoteSSH} "cd ${sandboxPublicThemesFolder}; /usr/local/bin/arc patch ${diffId}; /usr/local/bin/arc land; exit;"`, true);
 }
 
 /*