From a5aa90da219b6301518f90b7a7d29964afb83308 Mon Sep 17 00:00:00 2001 From: Fabian Aguilar Gomez Date: Mon, 9 Sep 2024 15:01:26 -0500 Subject: [PATCH] add hidden files --- script/new-artifact.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/script/new-artifact.sh b/script/new-artifact.sh index 136e632..f93af6b 100755 --- a/script/new-artifact.sh +++ b/script/new-artifact.sh @@ -8,3 +8,7 @@ echo 'world' > subdir/world.txt # Add some symlinks (which we should dereference properly when archiving) ln -s subdir subdir-link ln -s hello.txt bonjour.txt + +# Create some hidden files +echo 'foo' > .hidden +echo 'bar' > subdir/.hidden_also