Files
domain/share/gitea-tekton-org/index.rhai
2024-05-12 16:52:18 +02:00

14 lines
338 B
Plaintext

const SRC=src;
const DEST=dest;
const duplicates=["auto-ci-detector.py"];
fn post_pack() {
for file in global::duplicates {
shell(`cp ${global::SRC}/${file} ${global::DEST}/${file}`);
}
}
fn post_template() {
for file in global::duplicates {
shell(`cp ${global::SRC}/${file} ${global::DEST}/${file}`);
}
}