From cff31239fc33f9c30a640c0dabccd7e2b1e3d18d Mon Sep 17 00:00:00 2001 From: Tracey Clark Date: Thu, 18 Apr 2019 19:08:43 -0500 Subject: [PATCH] Added ability for gitea update script to get either numbered version or alphanumeric version string --- update-gitea.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update-gitea.pl b/update-gitea.pl index 5859bbf..3253f1e 100755 --- a/update-gitea.pl +++ b/update-gitea.pl @@ -71,6 +71,8 @@ my $latest_release_hash = decode_json($resp->content); my $tag = $latest_release_hash->{tag_name}; printf("The latest gitea version is $tag\n"); my $assetsURL = $latest_release_hash->{tag_name}; +printf ("!!! Dump of assets URL"); +printf Dumper $assetsURL; if ( $tag gt $gitea_current_version ) { printf("Proceeding with update\n");