kiss-fork: clean up

This commit is contained in:
Dylan Araps 2020-09-09 13:58:00 +03:00
parent 07ad1dcf73
commit cc084f654a
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 19 additions and 16 deletions

View File

@ -1,27 +1,30 @@
#!/bin/sh -ef #!/bin/sh -ef
# Copy a package's repository files into the current directory # Copy a package's repository files into the current directory
# Ignore shellcheck as we want the warning's behavior. pkg=${1:-"${PWD##*/}"}
# shellcheck disable=2015 num=$(printf %d "${2:-0}")
[ "$1" ] && kiss search "${1:-null}" >/dev/null || {
dir=$(kiss search "$pkg" 2>/dev/null) || {
printf 'usage: [kiss-fork [pkg]] [index]\n' printf 'usage: [kiss-fork [pkg]] [index]\n'
exit 1 exit 1
} }
num=$2 # Globbing is disabled and word splitting is intentional.
# shellcheck disable=2086
set -- $dir
# Disable this warning as globbing is disabled and word splitting [ "$num" -ge "$#" ] && {
# is intentional. This grabs the location of the package's files. printf 'index exceeds maximum\n'
# shellcheck disable=2046 exit 1
( }
set -- $(kiss search "$1")
shift "${num:-0}" shift "$num"
[ -d "$1" ] && { [ "$1" ] || [ -d "$1" ] || {
printf 'found package in %s\n' "$1" printf 'failed to locate package\n'
cp -r "$1" . exit 1
} }
)
printf 'forked package to %s\n' "$PWD/$1" printf 'found package in %s\n' "$1"
cp -rf "$1" .
printf 'forked package to %s\n' "$PWD/$pkg"