Skip to content
Snippets Groups Projects
Commit 12286e27 authored by Gerardo Pozzi's avatar Gerardo Pozzi
Browse files

[archiso] command_install() remove "already executed" logic

This is done better with run_once() in build.sh
parent 9532a8c3
No related branches found
No related tags found
No related merge requests found
......@@ -329,14 +329,7 @@ command_install () {
_show_config install
local _pkg_list_hash
_pkg_list_hash=$(echo ${pkg_list} | sort -u | md5sum | cut -c1-32)
if [[ -f "${work_dir}/install.${_pkg_list_hash}" ]]; then
_msg_info "These packages are already installed, skipping."
else
_pacman "${pkg_list}"
: > "${work_dir}/install.${_pkg_list_hash}"
fi
_pacman "${pkg_list}"
}
command_init() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment