mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-25 16:50:07 -07:00
8 lines
88 B
Bash
Executable File
8 lines
88 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd contrib
|
|
|
|
for bin in *; do
|
|
install -D "$bin" "$1/usr/bin/$bin"
|
|
done
|