mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 19:40:14 +00:00
7 lines
173 B
Bash
Executable File
7 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$(dirname "$0")"
|
|
for specfile in $(find "$DIR" -name "*.spec.tpl" -or -name "*.dsc.tpl") ; do
|
|
cp "$specfile" $(echo $specfile | sed -r 's#.tpl$##g')
|
|
done
|