adafruit / ci-arduino

A script that will install all of the common dependencies for testing Arduino library builds using Github Actions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Strange behaviour when installing multiple libraries

leonardoInf opened this issue · comments

When you have multiple dependencies in your project, you have to install them in seperate commands, otherwise it will not work

works:

  • arduino --install-library "Adafruit Unified Sensor"
  • arduino --install-library "Adafruit GFX Library"

doesn't work:

  • arduino --install-library "Adafruit Unified Sensor","Adafruit GFX Library"

It seems to be an issue with the script and not arduino itself, because usually a list of libraries is accepted.

yeah, i dont know why it doesnt work. if you can figure it out please submit a PR :)

I propose this (pull request)

please make a PR just for this one fix, and you can propose others in separate PRs!