blob: be3e774136e708d02b82fb10f6cd688db48bf221 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env bash
# Copyright 2024 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
set -e # exit on any problem
set -o pipefail
syzDir=$(mktemp -d)
git clone --depth 1 --branch master --single-branch \
https://github.com/google/syzkaller $syzDir
cd $syzDir
"$@"
cd -
rm -rf $syzDir
|