Skip to content

Commit

Permalink
Merge pull request #18 from Kernald/pio-quiet
Browse files Browse the repository at this point in the history
Pio quiet
  • Loading branch information
mum4k authored Oct 15, 2019
2 parents 5c7fc3e + 576be45 commit ba5ff00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions platformio/platformio.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ _COPY_COMMAND="cp {source} {destination}"

# Command that zips files recursively. It enters the output directory first so
# that the zipped path starts at lib/.
_ZIP_COMMAND="cd {output_dir} && zip -r -u {zip_filename} lib/"
_ZIP_COMMAND="cd {output_dir} && zip -qq -r -u {zip_filename} lib/"


# Command that unzips a zip archive into the specified directory.
_UNZIP_COMMAND="unzip -o -d {project_dir} {zip_filename}"
_UNZIP_COMMAND="unzip -qq -o -d {project_dir} {zip_filename}"


# Command that executes the PlatformIO build system and builds the project in
# the specified directory.
_BUILD_COMMAND="platformio run -d {project_dir}"
_BUILD_COMMAND="platformio run -s -d {project_dir}"


# Command that executes the PlatformIO build system and uploads the compiled
# firmware to the device.
_UPLOAD_COMMAND="platformio run -d {project_dir} -t upload"
_UPLOAD_COMMAND="platformio run -s -d {project_dir} -t upload"


# Header used in the shell script that makes platformio_project executable.
Expand Down

0 comments on commit ba5ff00

Please sign in to comment.