1 Star 0 Fork 0

RV少年 (RV4Kids)/rust-raspberrypi-OS-tutorials

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
contributor_setup.sh 664 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andre Richter 提交于 2021-01-04 17:51 . Add pull request template
#!/usr/bin/env bash
git config core.hooksPath .githooks
#
# Ruby and Bundler
#
if ! command -v bundle &> /dev/null
then
echo "'bundle' could not be found. Please install Ruby and Bundler."
exit
fi
bundle config set path '.vendor/bundle'
bundle install
#
# NPM
#
if ! command -v npm &> /dev/null
then
echo "'npm' could not be found. Please install it."
exit
fi
npm install --save-dev --save-exact prettier
#
# Misspell
#
if ! command -v curl &> /dev/null
then
echo "'curl' could not be found. Please install it."
exit
fi
curl -L -o ./install-misspell.sh https://git.io/misspell
sh ./install-misspell.sh -b .vendor
rm install-misspell.sh
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/RV4Kids/rust-raspberrypi-OS-tutorials.git
git@gitee.com:RV4Kids/rust-raspberrypi-OS-tutorials.git
RV4Kids
rust-raspberrypi-OS-tutorials
rust-raspberrypi-OS-tutorials
master

搜索帮助