From ef3b1d89bba80854172eee9e8693f72ad1d768bc Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 4 Apr 2022 17:25:56 +0200 Subject: Update --- src/u_checks.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/u_checks.go') diff --git a/src/u_checks.go b/src/u_checks.go index 6188803..9a12608 100644 --- a/src/u_checks.go +++ b/src/u_checks.go @@ -48,6 +48,7 @@ package main import ( + "fmt" "os" "os/exec" ) @@ -81,6 +82,9 @@ func check_time_format(time [3]byte) bool { } func check_file_exists(file string) bool { + if file == "" { + fmt.Println("empty") + } _, err := os.Stat(file) if os.IsNotExist(err) == true { return false -- cgit v1.2.3