We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed0b93c commit 16e0656Copy full SHA for 16e0656
.ci/static-analysis.sh
@@ -84,13 +84,12 @@ function do_gcc()
84
85
function do_smatch()
86
{
87
- wget -q https://repo.or.cz/smatch.git/snapshot/refs/heads/master.tar.gz
+ git clone https://github.com/error27/smatch.git --depth=1
88
if [ $? -ne 0 ]; then
89
echo "Failed to download smatch."
90
exit 1
91
fi
92
- tar -xzf master.tar.gz
93
- pushd smatch-master-*
+ pushd smatch
94
make smatch || exit 1
95
local SMATCH=$(pwd)/smatch
96
popd
0 commit comments