diff options
author | Cem Keylan <cem@ckyln.com> | 2020-06-02 17:15:40 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-06-02 17:15:40 +0300 |
commit | 7a88522d082eaff656de486a5e6e1b28af27af38 (patch) | |
tree | 5b752879ceb7d3e685d1e12e7ff840d3def8532d /extra/kiss-extra/build | |
parent | 9caf6e93748d91dba0adc0e4a2b053de05d3ecd4 (diff) | |
download | repository-7a88522d082eaff656de486a5e6e1b28af27af38.tar.gz |
kiss-extra: bump to 20200528
Diffstat (limited to 'extra/kiss-extra/build')
-rwxr-xr-x | extra/kiss-extra/build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/kiss-extra/build b/extra/kiss-extra/build index c4bab651..a94fd077 100755 --- a/extra/kiss-extra/build +++ b/extra/kiss-extra/build @@ -1,5 +1,5 @@ #!/bin/sh -e -for bin in kiss-*; do - install -Dm755 "$bin" "$1/usr/bin/$bin" -done +mkdir -p "$1/usr/bin" + +find . -type f -name kiss-\* -exec mv {} "$1/usr/bin" \; |