Skip to content

Commit 8fe832e

Browse files
committed
added a "do_all" script
1 parent 5e0d07d commit 8fe832e

File tree

2 files changed

+95
-75
lines changed

2 files changed

+95
-75
lines changed

CLAMS-devel/arduino_cli/0_do_all.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#! /usr/bin/env bash
2+
3+
set -e
4+
5+
rm --force *.log
6+
7+
for script in \
8+
uninstall_arduino_cli.sh \
9+
1_arduino_cli.sh \
10+
2_arduino_pico.sh \
11+
3_teensyduino.sh \
12+
4_daisyduino.sh \
13+
5_esp32.sh \
14+
6_adafruit_tinyusb_arduino_pico.sh \
15+
7_arduino_audio_tools.sh \
16+
boards_and_examples.sh
17+
do
18+
./$script
19+
done

0 commit comments

Comments
 (0)