From eb962899807137d5d692dcd7643d427030657ca7 Mon Sep 17 00:00:00 2001 From: nkaaf Date: Thu, 11 Nov 2021 21:47:32 +0100 Subject: [PATCH] typos --- build_platform.py | 8 ++++---- doxy_gen_and_deploy.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build_platform.py b/build_platform.py index d5edb81..2943fd3 100644 --- a/build_platform.py +++ b/build_platform.py @@ -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") diff --git a/doxy_gen_and_deploy.sh b/doxy_gen_and_deploy.sh index 09c89c8..d432fb6 100644 --- a/doxy_gen_and_deploy.sh +++ b/doxy_gen_and_deploy.sh @@ -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