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.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/leo.pl b/leo.pl
index 9d14e9d..a2656a4 100755
--- a/leo.pl
+++ b/leo.pl
@@ -76,8 +76,9 @@ sub archive {
 # Encrypt, Sign archives.
 sub encrypt_sign() {
     my $file = shift @_;
-    my @options = ("--recipient", $gpg_fingerprint);
-    push @options, "--encrypt" if $options{encrypt};
+    my @options = ();
+    push @options, "--recipient", $gpg_fingerprint, "--encrypt"
+        if $options{encrypt};
     push @options, "--sign" if $options{sign};
     push @options, "--verbose" if $options{verbose};
 
an class='oid'>f0cf7af7 ^
c912b731 ^
f0cf7af7 ^

34514ae8 ^
f0cf7af7 ^


c912b731 ^


a232af2f ^
c912b731 ^


5763322b ^

c912b731 ^



5763322b ^
c912b731 ^
5763322b ^
c912b731 ^
5763322b ^
c912b731 ^
5763322b ^
c912b731 ^
f898ee7a ^
5763322b ^

c912b731 ^
f898ee7a ^
c912b731 ^






a232af2f ^
745a6dee ^
c912b731 ^
5763322b ^


f0f16bdf ^
c912b731 ^
5763322b ^
c912b731 ^
53172ce1 ^
c912b731 ^
a232af2f ^


745a6dee ^
c912b731 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68