2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-12-22 23:30:05 -07: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