Skip to content

Commit f0aa7b6

Browse files
committed
bash cmd fix
1 parent 1c4dfa2 commit f0aa7b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/scripts/lib_install/linux/install-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -f /etc/os-release ]]; then
2626
dist_dir="${script_dir}/ubuntu-${VERSION_CODENAME}"
2727
for exe_file in \
2828
"${dist_dir}/install-prebuilt-packages.sh" "${dist_dir}/install-packages-from-source.sh"; do
29-
[[ -f "${exe_file}" ]] && "${privileged_command_prefix} ${exe_file}"
29+
[[ -f "${exe_file}" ]] && ${privileged_command_prefix} "${exe_file}"
3030
done
3131
exit 0
3232
fi

0 commit comments

Comments
 (0)