Skip to content

Commit c9b3d33

Browse files
dkcummingehildenb
andauthored
Fixed VERBOSE env var reading in Makefile (#77)
The make target `test-ui` takes a verbosity flag to print the output. This flag is provided as env var `VERBOSE`, but this was not being read properly from the environment and was always set to `0` --------- Co-authored-by: Everett Hildenbrandt <[email protected]> Co-authored-by: Everett Hildenbrandt <[email protected]>
1 parent b6797b8 commit c9b3d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ remake-ui-tests:
6060
# This will run without saving source files. Run the script manually to do this.
6161
bash tests/ui/remake_ui_tests.sh "$$RUST_DIR_ROOT"
6262

63-
test-ui: VERBOSE=0
63+
test-ui: VERBOSE?=0
6464
test-ui:
6565
# Check if RUST_DIR_ROOT is set
6666
if [ -z "$$RUST_DIR_ROOT" ]; then \

0 commit comments

Comments
 (0)