mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 23:30:05 -07:00
8 lines
90 B
Bash
Executable File
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
|