2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/baseinit/build

8 lines
90 B
Plaintext
Raw Normal View History

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