想在 git 的 pre-commit hook 里面执行一段命令,目前想新建一个窗口去执行和输出,同时还想在执行完毕后拿到 exit code 做为 pre-commit 的 exit code ,现在的问题是我貌似拿不到这个新窗口执行的 exit code 。有什么办法么?
新建窗口使用的是在 pre-commit 的 shell 环境调用 Apple Scirpt: to do script with command "shell commmand" 但是没找到这个 shell commnad 的 exit code 如何获取回到 pre-commit 的环境中再 exit 这个 code 。 google 了好多,仍然没有找到答案 T.T 有别的思路和方法也可以提 一下,感谢
主要代码如下
r=$(osascript<<EOF
tell application "Terminal"
activate
set t to do script with command "cd $pwd; set -o pipefail && xcodebuild -workspace $workspace -scheme $scheme -sdk $sdk -destination $destination test | xcpretty"
tell front window
set position to {150, 150}
set size to {1100, 700}
end tell
repeat
delay 1
if not busy of t then exit repeat
end repeat
display notification "switching to terminal..." with title "Unit Test Finished" sound name "Glass"
activate
end tell
EOF)
1
ooops OP 貌似发错节点了,怎么移动到程序员那里?
|
2
nevermlnd 2016-05-03 14:24:16 +08:00
command + T ?
|
3
ooops OP @nevermlnd 感谢回复,但是能详细说一下么。
用 osascript 新开 tab 也是可以的,但是拿不到 handler 也没法让 shell 代码运行在新 tab 里吧,最主要的还是拿到运行完的 exit code 。 |
4
ooops OP 有人么,有人帮移到相对应的节点下么
|
5
ooops OP 想到一种不是很优雅的方法是用 mac 的剪切板。
执行命令时使用 ``` set t to do script test_script in selected tab of the front window ``` 重点在于 in selected tab of the front window ,使后面的$?的命令可以在同一个窗口执行 但是使用 do script 依旧拿不到 exit code ,所以使用`pbcopy`那个$?,然后再执行一个`pbpaste`到 apple script 的变量,返回该变量 勉强实现。 有人 有更好的方法希望不吝赐教。 |