forked from kiss-community/repo
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
|