Skip to content

Commit

Permalink
fix: create install directory with mkdir -p (#1563)
Browse files Browse the repository at this point in the history
Co-authored-by: James Hegedus <jthegedus@hey.com>
  • Loading branch information
vespian and jthegedus committed May 31, 2023
1 parent 99623d7 commit d6185a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/functions/installs.bash
Expand Up @@ -207,7 +207,7 @@ install_tool_version() {
export ASDF_INSTALL_PATH=$install_path
# shellcheck disable=SC2030
export ASDF_DOWNLOAD_PATH=$download_path
mkdir "$download_path"
mkdir -p "$download_path"
asdf_run_hook "pre_asdf_download_${plugin_name}" "$full_version"
"${plugin_path}"/bin/download
)
Expand Down

0 comments on commit d6185a2

Please sign in to comment.