From: Jacob Bachmeyer Date: Sun, 9 Aug 2020 16:54:55 +0000 (-0500) Subject: Report module search path with version information X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e6ef8bb6bfa84a485d4b40d99c1760a2b3a37b45;p=gatekeeper.git Report module search path with version information --- diff --git a/upload-ftp-v1.2.pl b/upload-ftp-v1.2.pl index 7396cf3..93122a7 100755 --- a/upload-ftp-v1.2.pl +++ b/upload-ftp-v1.2.pl @@ -274,6 +274,9 @@ sub version_information { print "Copyright (c) $COPYRIGHT by $AUTHORS\n"; print "License: $LICENSE\n"; print "More information at $URL\n\n"; + print 'Running with @INC:', "\n"; + print " $_\n" for @INC; + print "\n"; exit; }