From 2544d95f7ce2845b5ca94c571d0238ee47abfb1e Mon Sep 17 00:00:00 2001 From: Nathan Robinson Date: Fri, 31 Jul 2020 19:42:29 -0400 Subject: [PATCH] cleanup -s flag at 19:42 of 2020-07-31 --- bin/neopo | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/neopo b/bin/neopo index 7acbdc2..1db73d0 100755 --- a/bin/neopo +++ b/bin/neopo @@ -574,13 +574,12 @@ def build(projectPath, command, helpOnly, verbosity): # Command used to invoke the Workbench makefile process = [ - "make", "-sf", - os.path.join(PARTICLE_DEPS, "buildscripts", scriptVersion, "Makefile"), + "make", "-f", os.path.join(PARTICLE_DEPS, "buildscripts", scriptVersion, "Makefile"), "PARTICLE_CLI_PATH=" + particle ] - # Remove [s] flag from make to get verbose output - process[1] = "-f" if verbosity == 1 else "-sf" + # Add [-s] flag to make to silence output + verbosity == 0 and process.append("-s") if helpOnly: process.append("help")