mirror of
https://github.com/luc-github/ESP3D.git
synced 2025-10-31 11:56:48 -07:00
13 lines
356 B
Bash
13 lines
356 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
|
|
ls $HOME
|
|
# Make sure we are inside the github workspace
|
|
cd $GITHUB_WORKSPACE
|
|
mkdir -p $HOME/arduino_ide/libraries/SSDP
|
|
cp -R ./src $HOME/arduino_ide/libraries/SSDP
|
|
cp ./library.properties $HOME/arduino_ide/libraries/SSDP
|
|
|