-
Notifications
You must be signed in to change notification settings - Fork 0
/
hoi.json
26 lines (26 loc) · 888 Bytes
/
hoi.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"homebrew": {
"check": "executable.exists('brew')",
"description": "Installs homebrew, the missing package manager for OS X",
"command": "ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\""
},
"cask": {
"required": ["homebrew"],
"check": "homebrew.installed('brew-cask')",
"description": "Installs homebrew cask, which allows to install os x applications",
"command": "brew install caskroom/cask/brew-cask"
},
"wget": {
"required": ["homebrew"],
"check": "homebrew.installed('wget')",
"description": "Installs wget",
"command": "brew install wget"
},
"hoi-config": {
"file": ".gitignore",
"check": "file.contains('.hoi-data')",
"description": "Adds .hoi-data to .gitignore. .hoi-data contains step parameters",
"type": "file-manipulation",
"append": ".hoi-data"
}
}