1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-fork

18 lines
355 B
Plaintext
Raw Normal View History

2020-03-13 13:43:54 +00:00
#!/bin/sh -ef
kiss s "${1:-null}" >/dev/null || {
printf 'usage: kiss-fork pkg_name\n'
exit 1
}
# Disable this warning as globbing is disabled and word splitting
# is intentional. This grabs the location of the package's files.
# shellcheck disable=2046
(
set -- $(kiss s "$1")
cp -r "$1" .
)
printf 'forked package to %s\n' "$PWD/$1"