mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 11:40:21 -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
|