This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 69d55cd9d7 [MINOR] Fix SYSDS_QUIET
69d55cd9d7 is described below
commit 69d55cd9d73884303ce983d29606eae574f2964e
Author: Sebastian Baunsgaard <[email protected]>
AuthorDate: Fri Apr 5 23:19:21 2024 +0200
[MINOR] Fix SYSDS_QUIET
---
bin/systemds | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/systemds b/bin/systemds
index ffad4b42c6..2e8e629495 100755
--- a/bin/systemds
+++ b/bin/systemds
@@ -397,7 +397,7 @@ if [ $PRINT_SYSDS_HELP == 1 ]; then
exit 1
fi
-if [ $SYSDS_QUIET != 0 ]; then
+if [ $SYSDS_QUIET == 0 ]; then
print_out
"###############################################################################"
print_out "# SYSTEMDS_ROOT= $SYSTEMDS_ROOT"
print_out "# SYSTEMDS_JAR_FILE= $SYSTEMDS_JAR_FILE"
@@ -449,7 +449,7 @@ else
$*"
fi
-if [ $SYSDS_QUIET != 0 ]; then
+if [ $SYSDS_QUIET == 0 ]; then
print_out "# Executing command: $CMD"
print_out
"###############################################################################"
fi