mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
14 lines
369 B
Bash
Executable File
14 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 'Building functional-test binary'
|
|
go build
|
|
|
|
echo 'Building HTTPX binary from current branch'
|
|
go build -o httpx_dev ../httpx
|
|
|
|
echo 'Installing latest release of HTTPX'
|
|
GO111MODULE=on go build -v github.com/projectdiscovery/httpx/cmd/httpx
|
|
|
|
echo 'Starting HTTPX functional test'
|
|
./functional-test -main ./httpx -dev ./httpx_dev -testcases testcases.txt
|