We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcfcb74 commit 2a45ca0Copy full SHA for 2a45ca0
build.sh
@@ -1,12 +1,17 @@
1
#!/bin/bash
2
3
if ! [ -x "$(command -v python3)" ]; then
4
- echo "ERROR: python is not installed! Please install python first."
+ echo "ERROR: python is not installed or not in PATH! Please install python first."
5
exit 1
6
fi
7
8
if ! [ -x "$(command -v git)" ]; then
9
- echo "ERROR: git is not installed! Please install git first."
+ echo "ERROR: git is not installed or not in PATH! Please install git first."
10
+ exit 1
11
+fi
12
+
13
+if ! [ -x "$(command -v ninja)" ]; then
14
+ echo "ERROR: ninja is not installed or not in PATH! Please install ninja first."
15
16
17
0 commit comments