mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 07:57:05 +00:00
12 lines
266 B
Bash
12 lines
266 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
git checkout master
|
||
|
|
cd ../nuclei/
|
||
|
|
go build
|
||
|
|
cp nuclei ../functional-test/nuclei_main
|
||
|
|
git checkout dev
|
||
|
|
go build
|
||
|
|
cp nuclei ../functional-test/nuclei_dev
|
||
|
|
cd ../functional-test
|
||
|
|
./functional-test -main ./nuclei_main -dev ./nuclei_dev -testcases testcases.txt
|