From d4d6bf61a7b664d27e4c2448ced32e188c41700e Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Tue, 14 Mar 2023 15:31:34 -0700 Subject: [PATCH] added comments for vercomp --- functions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions b/functions index 73ef327..97ea826 100644 --- a/functions +++ b/functions @@ -964,10 +964,12 @@ vercomp() { fi if ((10#${ver1[i]} > 10#${ver2[i]})) then + # version 1 is greater than version 2 return 1 fi if ((10#${ver1[i]} < 10#${ver2[i]})) then + # version 1 is less than version 2 return 2 fi done