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 a720762 commit db653b9Copy full SHA for db653b9
scripts/runInsider.sh
@@ -2,7 +2,10 @@
2
3
# Check for install/updates at https://github.com/insidersec/insider
4
5
-which insider > /dev/null || (echo 'Insider not found. Visit https://github.com/insidersec/insider and follow installation instructions' && exit 1)
+if ! command -v insider &> /dev/null; then
6
+ echo "Insider not found. Visit https://github.com/insidersec/insider and follow installation instructions"
7
+ exit 1
8
+fi
9
10
benchmark_version=$(scripts/getBenchmarkVersion.sh)
11
insider_version=$(insider -version | grep Version | cut -d' ' -f2)
0 commit comments