user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] certs/create-certs: create certs in 'certs/' directory
@ 2019-06-26  8:06 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2019-06-26  8:06 UTC (permalink / raw)
  To: meta

If running in our top-level source tree, use the 'certs/'
directory as  the prefix so we can just invoke `./certs/create-certs.perl'
instead of `(cd certs && ./create-certs.perl)'
---
 certs/create-certs.perl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/certs/create-certs.perl b/certs/create-certs.perl
index 476be4d7..b287cec5 100755
--- a/certs/create-certs.perl
+++ b/certs/create-certs.perl
@@ -6,7 +6,7 @@ use warnings;
 use IO::Socket::SSL::Utils;
 use Net::SSLeay;
 
-my $dir = "./";
+my $dir = -d 'certs' && -f 'Makefile.PL' ? './certs/' : './';
 my $now = time();
 my $later = 0x7fffffff; # 2038 problems on 32-bit :<
 
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-06-26  8:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-26  8:06 [PATCH] certs/create-certs: create certs in 'certs/' directory Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).