[ARVADOS] updated: 1.3.0-1952-g278e53556

Git user git at public.curoverse.com
Thu Nov 28 18:18:35 UTC 2019


Summary of changes:
 build/run-library.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

       via  278e53556cb9623c0450cae6b9e21bab682be58f (commit)
      from  fb72a4315bfcf64621d023a38d1544319aa3666c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 278e53556cb9623c0450cae6b9e21bab682be58f
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date:   Thu Nov 28 13:04:11 2019 -0500

    Fix rails package versions for dev builds.
    
    [ $goversion > $railsversion ] doesn't compare versions, it just
    creates an empty file called $railsversion and returns success.  As a
    result, the arvados-api-server and arvados-workbench package
    numbers (and the rebuild-or-reuse decisions) were based only on the
    last change to cmd/arvados-server, disregarding more recent changes in
    the respective Rails projects.
    
    refs #15819
    refs #15863
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>

diff --git a/build/run-library.sh b/build/run-library.sh
index f173504c5..8857d5b63 100755
--- a/build/run-library.sh
+++ b/build/run-library.sh
@@ -219,7 +219,7 @@ rails_package_version() {
 	local arvados_server_version
 	calculate_go_package_version arvados_server_version cmd/arvados-server
 	cd $P
-	if [ $arvados_server_version > $version ] ; then
+	if [ $arvados_server_version -gt $version ] ; then
 	    version=$arvados_server_version
 	fi
     fi

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list