diff options
author | Andinus <andinus@nand.sh> | 2020-08-27 13:52:47 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-08-27 13:52:47 +0530 |
commit | 6c5aea0ee37a25ea289d44850d3dc37133f32cdf (patch) | |
tree | 45af37c813fcc0369b10dcb387625f0b1932f504 | |
parent | 61c874b22e5694aa5a30725db1a68080acca7174 (diff) | |
download | leo-6c5aea0ee37a25ea289d44850d3dc37133f32cdf.tar.gz |
Add missing semicolon
-rwxr-xr-x | leo.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/leo.pl b/leo.pl index 44266db..bdd3f3d 100755 --- a/leo.pl +++ b/leo.pl @@ -61,7 +61,7 @@ sub archive { warn "$tar_file exists, might overwrite.\n" if -e $tar_file; print "\n"; - tar_create($tar_file, @_) + tar_create($tar_file, @_); $? # tar returns 1 on errors. ? die "Archive creation failed :: $?\n" |