mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 16:28:41 +00:00
10 lines
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f /sentinels/load.txt
|
|
|
|
rm -rf -- /output/*
|
|
cp -Rf /git/. /output || exit 1
|
|
|
|
chmod -R a+rw /output || exit 1
|
|
|
|
touch /sentinels/load.txt |