This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new c25de19705 chore: Made sure all log output in the prerequisite is 
nicely padded.
c25de19705 is described below

commit c25de19705501daee9dbc28a5cc8296a4cae9504
Author: Christofer Dutz <cd...@apache.org>
AuthorDate: Mon May 6 08:57:25 2024 +0200

    chore: Made sure all log output in the prerequisite is nicely padded.
---
 src/main/script/prerequisiteCheck.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/script/prerequisiteCheck.groovy 
b/src/main/script/prerequisiteCheck.groovy
index ef81acfa12..4a5690aeb6 100644
--- a/src/main/script/prerequisiteCheck.groovy
+++ b/src/main/script/prerequisiteCheck.groovy
@@ -202,8 +202,8 @@ def checkGit() {
 // Remark: We're using venv, which was introduced with python 3.3,
 // that's why this is the baseline for python.
 def checkPython() {
-    def python = project.properties['python.exe.bin']
-    println "Using python executable:    " + python + "        OK"
+    String python = project.properties['python.exe.bin']
+    println "Using python executable:   " + python.padRight(14) + " OK"
     print "Detecting Python version:  "
     try {
         def process = (python + " --version").execute()

Reply via email to