about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-08-27 13:52:47 +0530
committerAndinus <andinus@nand.sh>2020-08-27 13:52:47 +0530
commit6c5aea0ee37a25ea289d44850d3dc37133f32cdf (patch)
tree45af37c813fcc0369b10dcb387625f0b1932f504
parent61c874b22e5694aa5a30725db1a68080acca7174 (diff)
downloadleo-6c5aea0ee37a25ea289d44850d3dc37133f32cdf.tar.gz
Add missing semicolon
-rwxr-xr-xleo.pl2
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"