aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkg/utilities/utilities.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/utilities/utilities.go b/pkg/utilities/utilities.go
index 2ccbf63..4461755 100644
--- a/pkg/utilities/utilities.go
+++ b/pkg/utilities/utilities.go
@@ -28,7 +28,7 @@ func GetCopyright() string {
// DoesFilesExist Check if the following files exist, return files that don't exist
func DoesFilesExist(files []string) []string {
- nonExistent := []string{}
+ var nonExistent []string
for _, file := range files {
// https://stackoverflow.com/a/12518877