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 e90b6f0 commit 18a9475Copy full SHA for 18a9475
install.sh
@@ -1,4 +1,18 @@
1
#!/bin/bash
2
+set -e
3
+
4
+printf '%s\n' "Before running this script, make sure of the following:"
5
+printf '%s\n' "1. You have zephyr installed properly on your system."
6
+printf '%s\n' "2. Updated west.yml in zephyr and run west update to pull this module in proper location."
7
+printf '%s\n' "If you meet the above criteria, please enter [yY]Yes and if not, then [nN]No."
8
+read answer
9
10
+if [ "$answer" != "${answer#[Yy]}" ] ;then
11
+ printf '%s\n' "Yes"
12
+else
13
+ printf '%s\n' "No"
14
+ exit 1
15
+fi
16
17
API_FOLDER=~/.ArduinoCore-API
18
if [ ! -d "$API_FOLDER" ] ; then
0 commit comments