4 Star 2 Fork 1

Gitee 极速下载/browsh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/browsh-org/browsh
克隆/下载
ctl.sh 576 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
set -e
function_to_run=$1
export PROJECT_ROOT
export GORELEASER_VERSION=1.10.2
PROJECT_ROOT=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
function _includes_path {
echo "$PROJECT_ROOT"/scripts
}
function _load_includes {
for file in "$(_includes_path)"/*.bash; do
# shellcheck disable=1090
source "$file"
done
}
_load_includes
if [[ $(type -t "$function_to_run") != function ]]; then
echo "Subcommand: '$function_to_run' not found."
exit 1
fi
shift
pushd "$PROJECT_ROOT" || _panic
"$function_to_run" "$@"
popd || _panic
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/browsh.git
[email protected]:mirrors/browsh.git
mirrors
browsh
browsh
master

搜索帮助