2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/baseinit/build
2019-06-20 21:47:13 +03:00

8 lines
90 B
Bash
Executable File

#!/bin/sh -e
mkdir -p "$1/etc"
for f in src/*; do
install -m 644 "$f" "$1/etc"
done