Skip to content

Commit

Permalink
add sudo to symlink creation calls
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Downs <[email protected]>
  • Loading branch information
briandowns committed Jul 21, 2020
1 parent 992e2c8 commit 00f69cf
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 00f69cf

Please sign in to comment.