diff options
author | Leonard Kugis <leonard@kug.is> | 2025-04-13 05:01:10 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-04-13 05:01:10 +0200 |
commit | b2ab6dc1ffbb5ff327cb8ee46c669fb3efc93cb7 (patch) | |
tree | 01ed311ecf56b0ad5f06e8e1e6238b7cbd860adc /backup/src | |
parent | ef16a7e14213498a35a77664ec8e4e5cecaa584d (diff) | |
download | scripts-b2ab6dc1ffbb5ff327cb8ee46c669fb3efc93cb7.tar.gz |
Added missing semicolon
Diffstat (limited to 'backup/src')
-rw-r--r-- | backup/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backup/src/main.rs b/backup/src/main.rs index b5a6688..2f5f06a 100644 --- a/backup/src/main.rs +++ b/backup/src/main.rs @@ -140,11 +140,11 @@ fn main() -> Result<(), Box<dyn Error>> { tar_cmd .arg("-cvp") .arg("-I") - .arg("zstd -9 -T1"); + .arg("zstd -9 -T1") .arg("-f") .arg(&backup_path) .arg("-g") - .arg(timestamp_file) + .arg(timestamp_file); for src in &source_paths { tar_cmd.arg(src); |