1 Star 0 Fork 0

loveq369/depot_tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
git-runhooks 610 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
while test "$PWD" != "/"; do
if test -f "$PWD/src/.gitmodules"; then
break
fi
cd ..
done
if ! test -f "$PWD/src/.gitmodules"; then
echo "Could not find the root of your checkout; aborting." 1>&2
exit 1
fi
gclient_spec="solutions=[{'name':'src','url':None,'deps_file':'.DEPS.git'}]"
kernel_name=$(uname -s)
if [ "${kernel_name:0:5}" = "MINGW" ]; then
dir="${0%\\*}"
cmd "/C ${dir}\\python.bat ${dir}\\gclient.py runhooks --spec=$gclient_spec"
else
dir="$(dirname $0)"
PYTHONDONTWRITEBYTECODE=1 exec python "$dir/gclient.py" runhooks --spec="$gclient_spec"
fi
exit $?
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/longhaiqiang/depot_tools.git
git@gitee.com:longhaiqiang/depot_tools.git
longhaiqiang
depot_tools
depot_tools
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385