From e441b4880fd26b3ed22040111583d16ce47ad925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20=C3=85hall?= Date: Thu, 10 Oct 2024 09:22:13 +0200 Subject: [PATCH] Added gitignore --- .gitignore | 2 ++ main.go | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5afb0e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +timelapse +timelapse.mp4 diff --git a/main.go b/main.go index 778fe20..7d40815 100644 --- a/main.go +++ b/main.go @@ -150,7 +150,7 @@ func timelapse(date string, files []string) { // {{{ panic(err) } } // }}} -func concatVideos(unsortedDates []string) { +func concatVideos(unsortedDates []string) { // {{{ fname := "/tmp/timelapse/sequence_all" var videos []string @@ -167,7 +167,7 @@ func concatVideos(unsortedDates []string) { fmt.Printf("%s\n", out) panic(err) } -} +} // }}} func main() { parseCommandLine()