2024-01-09 15:48:11 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
pipe=${args[--pipe]:?}
|
|
|
|
target=${args[target]:?}
|
|
|
|
url=${args[url]:?}
|
2024-01-12 01:28:44 +00:00
|
|
|
completions=${args[completions]:-}
|
2024-01-09 15:48:11 +00:00
|
|
|
|
|
|
|
if [ "${action:-file}" = "exe" ]
|
|
|
|
then
|
|
|
|
if [ -x "$(command -v "$target")" ]
|
|
|
|
then
|
|
|
|
return
|
|
|
|
fi
|
2024-01-12 01:28:44 +00:00
|
|
|
exe=$target
|
2024-01-09 15:48:11 +00:00
|
|
|
target="$HOME/.local/bin/$target"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
if [ ! -f "$target" ]
|
|
|
|
then
|
|
|
|
echo "Installing file $url to $target"
|
|
|
|
|
|
|
|
target_dir=$(dirname "$target")
|
|
|
|
mkdir -p "$target_dir"
|
|
|
|
cd "$target_dir" || exit 1
|
|
|
|
|
|
|
|
_http_client "$url" | eval "$pipe" > "$target"
|
|
|
|
|
|
|
|
if [ "${action:-file}" = "exe" ]
|
|
|
|
then
|
|
|
|
chmod +x "$target"
|
2024-01-12 01:28:44 +00:00
|
|
|
|
|
|
|
if [ -z "$completions" ]
|
|
|
|
then
|
|
|
|
echo "Installing completions for $exe"
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
"$target" $completions > "$XDG_CONFIG_HOME/completionsrc.d/_$(basename "$exe")"
|
|
|
|
fi
|
2024-01-09 15:48:11 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
_run_hook
|
|
|
|
fi
|