Skip to content

Commit 6100ba4

Browse files
SYS-8273 add spacing for syntax
1 parent e5e5a10 commit 6100ba4

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

main/commit-msg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ me=$(basename "$0")
44
case "$OSTYPE" in
55
msys*|mingw*|cygwin*|win32*)
66
echo "Running ${me} on Windows"
7-
if command -v python3 >/dev/null 2>&1; then
7+
if command -v python3 > /dev/null 2>&1; then
88
PYTHON_EXECUTABLE=(python3)
9-
elif command -v python >/dev/null 2>&1; then
9+
elif command -v python > /dev/null 2>&1; then
1010
PYTHON_EXECUTABLE=(python)
1111
else
1212
echo "Error: Python not found or not runnable"
@@ -15,9 +15,9 @@ case "$OSTYPE" in
1515
;;
1616
*)
1717
echo "Running ${me} on linux / mac / unix"
18-
if command -v python3 >/dev/null 2>&1; then
18+
if command -v python3 > /dev/null 2>&1; then
1919
PYTHON_EXECUTABLE=(python3)
20-
elif command -v python >/dev/null 2>&1; then
20+
elif command -v python > /dev/null 2>&1; then
2121
PYTHON_EXECUTABLE=(python)
2222
else
2323
echo "Error: Python not found or not runnable"

main/pre-commit

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ me=$(basename "$0")
44
case "$OSTYPE" in
55
msys*|mingw*|cygwin*|win32*)
66
echo "Running ${me} on Windows"
7-
if command -v python3 >/dev/null 2>&1; then
7+
if command -v python3 > /dev/null 2>&1; then
88
PYTHON_EXECUTABLE=(python3)
9-
elif command -v python >/dev/null 2>&1; then
9+
elif command -v python > /dev/null 2>&1; then
1010
PYTHON_EXECUTABLE=(python)
1111
else
1212
echo "Error: Python not found or not runnable"
@@ -15,9 +15,9 @@ case "$OSTYPE" in
1515
;;
1616
*)
1717
echo "Running ${me} on linux / mac / unix"
18-
if command -v python3 >/dev/null 2>&1; then
18+
if command -v python3 > /dev/null 2>&1; then
1919
PYTHON_EXECUTABLE=(python3)
20-
elif command -v python >/dev/null 2>&1; then
20+
elif command -v python > /dev/null 2>&1; then
2121
PYTHON_EXECUTABLE=(python)
2222
else
2323
echo "Error: Python not found or not runnable"

main/pre-merge-commit

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ me=$(basename "$0")
44
case "$OSTYPE" in
55
msys*|mingw*|cygwin*|win32*)
66
echo "Running ${me} on Windows"
7-
if command -v python3 >/dev/null 2>&1; then
7+
if command -v python3 > /dev/null 2>&1; then
88
PYTHON_EXECUTABLE=(python3)
9-
elif command -v python >/dev/null 2>&1; then
9+
elif command -v python > /dev/null 2>&1; then
1010
PYTHON_EXECUTABLE=(python)
1111
else
1212
echo "Error: Python not found or not runnable"
@@ -15,9 +15,9 @@ case "$OSTYPE" in
1515
;;
1616
*)
1717
echo "Running ${me} on linux / mac / unix"
18-
if command -v python3 >/dev/null 2>&1; then
18+
if command -v python3 > /dev/null 2>&1; then
1919
PYTHON_EXECUTABLE=(python3)
20-
elif command -v python >/dev/null 2>&1; then
20+
elif command -v python > /dev/null 2>&1; then
2121
PYTHON_EXECUTABLE=(python)
2222
else
2323
echo "Error: Python not found or not runnable"

0 commit comments

Comments
 (0)