Skip to content
This repository was archived by the owner on Jul 22, 2020. It is now read-only.

Commit b906178

Browse files
authored
Update fuzzit.sh
1 parent 9ef8c5e commit b906178

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

ci/fuzzit.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -xe
55
export GO111MODULE="off"
66

77
if [ -z ${1+x} ]; then
8-
echo "must call with job type as first argument e.g. 'fuzzing' or 'sanity'"
8+
echo "must call with job type as first argument: 'fuzzing' or 'regression'"
99
echo "see https://github.com/fuzzitdev/example-go/blob/master/.travis.yml"
1010
exit 1
1111
fi
@@ -30,12 +30,9 @@ clang -fsanitize=fuzzer ${TARGET}.a -o ${TARGET}
3030
# you can repeat the above for more fuzzing targets
3131

3232
## Install fuzzit cmd-line tool for talking to https://fuzzit.dev
33-
wget -q -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/v2.4.12/fuzzit_Linux_x86_64
33+
wget -q -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/v2.4.17/fuzzit_Linux_x86_64
3434
chmod a+x fuzzit
3535

36-
# authenticate with fuzzit.dev server using api key from settings panel in the dashboard
37-
./fuzzit auth ${FUZZIT_API_KEY}
38-
3936
# create fuzzing target on the server if it doesn't already exist
4037
./fuzzit create target ${TARGET} || true
4138

0 commit comments

Comments
 (0)