Files
upload-pages-artifact/script/new-artifact.sh
Yoann Chaudet 8ad82273b5 Update script/new-artifact.sh
Co-authored-by: James M. Greene <JamesMGreene@github.com>
2022-08-19 08:55:21 -07:00

11 lines
275 B
Bash
Executable File

#!/usr/bin/env 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