diff options
author | Andinus <andinus@nand.sh> | 2020-10-15 16:43:54 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-10-15 16:43:54 +0530 |
commit | 561874a1000dfb4ab60fa4e679c50e869896b976 (patch) | |
tree | 0963a7c392604ef7ef2afe564fd763be2bcc25bb | |
parent | ea4cb9913e6c337e2bb766d0d47f35a3ecadbafd (diff) | |
download | leo-561874a1000dfb4ab60fa4e679c50e869896b976.tar.gz |
Fix a typo in variable name
-rwxr-xr-x | leo.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/leo.pl b/leo.pl index 920a690..da0af3b 100755 --- a/leo.pl +++ b/leo.pl @@ -14,7 +14,7 @@ use Getopt::Long qw/ GetOptions /; my %options = ( encrypt => $ENV{LEO_ENCRYPT}, sign => $ENV{LEO_SIGN}, - sign => $ENV{LEO_SIGNIFY}, + signify => $ENV{LEO_SIGNIFY}, ); GetOptions( |