From 5d26b54314e0b3df506029fa87dbaf5ccf4ff15a Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Fri, 23 Aug 2019 13:10:00 +1000 Subject: [PATCH] Change the master firmware.hex location in Travis to PIO v4 dir --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c8ff8def..d229bfeb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -68,7 +68,7 @@ script: # Run the builds (Mega must be last so that the hex file isn't cleaned up) - platformio run -e teensy35 -e teensy40 -e megaatmega2560 # Upload ini and hex files to speeduino.com server - - curl --user "speeduino_firmware@speeduino.com:$WEB_PWD" --basic -T "./.pioenvs/megaatmega2560/firmware.hex" "https://speeduino.com:2078/bin/master.hex" + - curl --user "speeduino_firmware@speeduino.com:$WEB_PWD" --basic -T "./.pio/build/megaatmega2560/firmware.hex" "https://speeduino.com:2078/bin/master.hex" - curl --user "speeduino_firmware@speeduino.com:$WEB_PWD" --basic -T "./reference/speeduino.ini" "https://speeduino.com:2078/master.ini" # Begin MISRA scan - cd ..