about summary refs log tree commit diff stats
path: root/leo.pl
diff options
context:
space:
mode:
Diffstat (limited to 'leo.pl')
-rwxr-xr-xleo.pl8
1 files changed, 7 insertions, 1 deletions
diff --git a/leo.pl b/leo.pl
index 17b6482..4854830 100755
--- a/leo.pl
+++ b/leo.pl
@@ -13,7 +13,13 @@ use Getopt::Long qw/ GetOptions /;
 my $version = "leo v0.4.0";
 
 # Options.
-my %options;
+my %options = (
+    L_SIGN => $ENV{L_SIGN},
+    L_GZIP => $ENV{L_GZIP},
+    L_ENCRYPT => $ENV{L_ENCRYPT},
+    L_SIGNIFY => $ENV{L_SIGNIFY},
+);
+
 GetOptions(
     \%options,
     qw{ verbose help version }