mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 08:18:39 +00:00
11 lines
150 B
Bash
Executable File
11 lines
150 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
|