From d848311fe225ebd6ddec31ca304553153297a191 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 20 Sep 2022 16:17:21 +0300 Subject: [PATCH] tests: add missing script_with_no_extension, add exception for /tmp.* files in .gitignore --- .gitignore | 3 +++ vlib/v/tests/script_with_no_extension | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 vlib/v/tests/script_with_no_extension diff --git a/.gitignore b/.gitignore index bda00a4df7..a2a3b0dae4 100644 --- a/.gitignore +++ b/.gitignore @@ -109,3 +109,6 @@ vls.log # ignore v2go tmperror files *.tmperr + +*/**/tmp.* + diff --git a/vlib/v/tests/script_with_no_extension b/vlib/v/tests/script_with_no_extension new file mode 100755 index 0000000000..a628558075 --- /dev/null +++ b/vlib/v/tests/script_with_no_extension @@ -0,0 +1,3 @@ +#!/usr/bin/env -S v -raw-vsh-tmp-prefix tmp + +println("Test")