summaryrefslogtreecommitdiff
path: root/compare_versions.sh
diff options
context:
space:
mode:
Diffstat (limited to 'compare_versions.sh')
-rwxr-xr-xcompare_versions.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/compare_versions.sh b/compare_versions.sh
index b205a66..757100d 100755
--- a/compare_versions.sh
+++ b/compare_versions.sh
@@ -13,16 +13,6 @@ IFS='.'
read -ra V1 <<< "$1"
read -ra V2 <<< "$2"
-# DEBUG
-for val in "${V1[@]}"; do
- echo "$val"
-done
-echo ${#V1[@]}
-for val in "${V2[@]}"; do
- echo "$val"
-done
-echo ${#V2[@]}
-
# Determine shorter array (for the loop)
LENGTH=${#V1[@]}