We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 541d120 commit 9df9406Copy full SHA for 9df9406
bootstrap/bootstrap.sh
@@ -223,10 +223,11 @@ function install_binary() {
223
###########################
224
function install_fzf() {
225
local temp_dir=$(mktemp -d)
226
- cd "${temp_dir}" || exit 1
+ pushd "${temp_dir}" &>/dev/null
227
install_binary fzf https://raw.githubusercontent.com/junegunn/fzf/refs/heads/master/install bash --bin
228
mkdir -p "${HOME}/.local/bin"
229
mv "${temp_dir}/bin/fzf" "${HOME}/.local/bin/fzf"
230
+ popd &>/dev/null
231
rm -rf "${temp_dir}"
232
}
233
0 commit comments