Skip to content

Commit

Permalink
Merge pull request #106 from briandowns/add_sudo_to_symlink_creation
Browse files Browse the repository at this point in the history
add sudo to symlink creation calls
  • Loading branch information
briandowns authored Jul 21, 2020
2 parents a61c126 + 00f69cf commit 18ee5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ download_and_verify() {
create_symlinks() {
info "creating symlinks..."
for bin in ${BASE_DIR}/data/*/bin/*; do
ln -sf "${bin}" "${INSTALL_PATH}"/"$(basename ${bin})"
${SUDO} ln -sf "${bin}" "${INSTALL_PATH}"/"$(basename ${bin})"
done
}

Expand Down

0 comments on commit 18ee5b7

Please sign in to comment.