-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·13 lines (10 loc) · 1.03 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
# ISSUEテンプレートをダウンロードするスクリプトです。
mkdir -p .github/ISSUE_TEMPLATE
curl -s -L -o .github/ISSUE_TEMPLATE/default.md https://raw.githubusercontent.com/yousan/github_template/master/.github/ISSUE_TEMPLATE/default.md &
curl -s -L -o .github/ISSUE_TEMPLATE/default_en.md https://raw.githubusercontent.com/yousan/github_template/master/.github/ISSUE_TEMPLATE/default_en.md &
curl -s -L -o .github/ISSUE_TEMPLATE/detailed.md https://raw.githubusercontent.com/yousan/github_template/master/.github/ISSUE_TEMPLATE/detailed.md &
curl -s -L -o .github/ISSUE_TEMPLATE/detailed_en.md https://raw.githubusercontent.com/yousan/github_template/master/.github/ISSUE_TEMPLATE/detailed_en.md &
curl -s -L -o .github/ISSUE_TEMPLATE/fix.md https://raw.githubusercontent.com/yousan/github_template/master/.github/ISSUE_TEMPLATE/fix.md &
curl -s -L -o .github/PULL_REQUEST_TEMPLATE.md https://raw.githubusercontent.com/yousan/github_template/master/.github/PULL_REQUEST_TEMPLATE.md &
wait