mirror of
https://github.com/aljazceru/recon-pipeline.git
synced 2025-12-20 15:54:25 +01:00
* removed tool_dict dependency * updated tests * updated go version * added defaults for failing iteration during tool installation * Update pythonapp.yml * updated docs
13 lines
302 B
YAML
13 lines
302 B
YAML
dependencies: [go]
|
|
go: &gotool !get_tool_path "{go[path]}"
|
|
path: &path !join_path [!get_default "{gopath}", "bin/amass"]
|
|
environ: {"GO111MODULE": "on", "GOPATH": !get_default "{gopath}"}
|
|
|
|
install_commands:
|
|
- !join [*gotool, get github.com/OWASP/Amass/v3/...]
|
|
|
|
uninstall_commands:
|
|
- !join [rm, *path]
|
|
|
|
|