9 lines
180 B
Bash
9 lines
180 B
Bash
#!/bin/bash
|
|
# Exit immediately if a command exits with a non-zero status.
|
|
set -e
|
|
# Enable the globstar shell option
|
|
shopt -s globstar
|
|
|
|
pip install -U platformio
|
|
platformio update
|
|
|