14 lines
338 B
Plaintext
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}`);
|
|
}
|
|
}
|