Codebase list subfinder / 5e4aae3
Update Installation Instructions The installation instructions for installing from source and updating had a wrong path, leading to installation failure. VainlyStrain authored 3 years ago GitHub committed 3 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
100100 subfinder requires go1.14+ to install successfully. Run the following command to get the repo -
101101
102102 ```sh
103 GO111MODULE=auto go get -u -v github.com/projectdiscovery/subfinder/cmd/subfinder
103 GO111MODULE=auto go get -u -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
104104 ```
105105
106106 ### From Github
107107
108108 ```sh
109109 git clone https://github.com/projectdiscovery/subfinder.git
110 cd subfinder/cmd/subfinder
110 cd subfinder/v2/cmd/subfinder
111111 go build .
112112 mv subfinder /usr/local/bin/
113113 subfinder -h
117117 If you wish to upgrade the package you can use:
118118
119119 ```sh
120 GO111MODULE=auto go get -u -v github.com/projectdiscovery/subfinder/cmd/subfinder
120 GO111MODULE=auto go get -u -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
121121 ```
122122
123123 ## Post Installation Instructions