Files
upload-pages-artifact/script/new-artifact.sh
Yoann Chaudet 6b3212610f Add tests
2022-08-18 16:33:31 -07:00

11 lines
267 B
Bash
Executable File

#!/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