Add tests

This commit is contained in:
Yoann Chaudet
2022-08-18 16:33:31 -07:00
parent 6a57e48bf6
commit 6b3212610f
2 changed files with 47 additions and 0 deletions

10
script/new-artifact.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Create some files and directories in the current folder
echo 'hello' > hello.txt
mkdir subdir
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