2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-04 00:10:58 -06:00
repo/core/baseinit/build

8 lines
90 B
Plaintext
Raw Normal View History

2019-06-20 01:45:35 -06:00
#!/bin/sh -e
2019-06-20 12:47:13 -06:00
mkdir -p "$1/etc"
2019-06-20 01:45:35 -06:00
2019-06-20 12:47:13 -06:00
for f in src/*; do
2019-06-20 01:45:35 -06:00
install -m 644 "$f" "$1/etc"
done