You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2021/01/07 00:56:09 UTC

[whimsy] branch master updated: Allow URL to be stripped

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 8b8debb  Allow URL to be stripped
8b8debb is described below

commit 8b8debb6a667d795f5cb8389f7f14e264b96d5f2
Author: Sebb <se...@apache.org>
AuthorDate: Thu Jan 7 00:56:00 2021 +0000

    Allow URL to be stripped
---
 tools/mirror_check.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/mirror_check.rb b/tools/mirror_check.rb
index c57deed..ce6a31d 100755
--- a/tools/mirror_check.rb
+++ b/tools/mirror_check.rb
@@ -370,7 +370,7 @@ end
 
 if __FILE__ == $0
   init
-  url = ARGV[0] || "localhost" # easier to test in an IDE
+  url = ""+ARGV[0] || "localhost" # easier to test in an IDE
   checkHTTP(url)
   # display the test results
   @tests.each { |t| t.map{|k, v| puts "#{k}: - #{v}"}}