summaryrefslogtreecommitdiffhomepage
path: root/subr/post_copy_etc.subr
blob: 9681e14a5aaec19262a3faee17f7bc0373f299f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# set -o errexit -o noglob are assumed.
#

post_copy_etc() {
	tar -C etc -cpf - midipix.sh README midipix_shortcut.vbs	|\
	tar -C ${PREFIX} -xpf -;
	chmod +x ${PREFIX}/midipix.sh;
};

# vim:filetype=sh