Skip to content

Commit

Permalink
chore: Made sure all log output in the prerequisite is nicely padded.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed May 6, 2024
1 parent 0e1c8c5 commit c25de19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/script/prerequisiteCheck.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit c25de19

Please sign in to comment.