typos
This commit is contained in:
parent
e659722956
commit
eb96289980
2 changed files with 5 additions and 5 deletions
|
|
@ -199,10 +199,10 @@ print("INSTALLING ARDUINO BOARDS")
|
|||
ColorPrint.print_info('#'*40)
|
||||
|
||||
run_or_die("arduino-cli core update-index --additional-urls "+BSP_URLS+
|
||||
" > /dev/null", "FAILED to update core indecies")
|
||||
" > /dev/null", "FAILED to update core indices")
|
||||
print()
|
||||
|
||||
################################ Install dependancies
|
||||
################################ Install dependencies
|
||||
our_name=None
|
||||
try:
|
||||
if IS_LEARNING_SYS:
|
||||
|
|
@ -218,13 +218,13 @@ try:
|
|||
dep = dep.strip()
|
||||
print("Installing "+dep)
|
||||
run_or_die('arduino-cli lib install "'+dep+'" > /dev/null',
|
||||
"FAILED to install dependancy "+dep)
|
||||
"FAILED to install dependency "+dep)
|
||||
except OSError:
|
||||
print("No library dep or properties found!")
|
||||
pass # no library properties
|
||||
|
||||
# Delete the existing library if we somehow downloaded
|
||||
# due to dependancies
|
||||
# due to dependencies
|
||||
if our_name:
|
||||
run_or_die("arduino-cli lib uninstall \""+our_name+"\"", "Could not uninstall")
|
||||
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ if [ -d "html" ] && [ -f "html/index.html" ]; then
|
|||
-m "Commit: ${COMMIT_SHA1}"$'\n'"${BUILD_ID}"
|
||||
|
||||
# Force push to the remote gh-pages branch.
|
||||
# The ouput is redirected to /dev/null to hide any sensitive credential data
|
||||
# The output is redirected to /dev/null to hide any sensitive credential data
|
||||
# that might otherwise be exposed.
|
||||
echo 'Git pushing'
|
||||
git push --force "https://${AUTH}@github.com/${REPO_SLUG}.git" > /dev/null 2>&1
|
||||
|
|
|
|||
Loading…
Reference in a new issue