Drop the '-d' from pacstrap calls
The '-d' in pacstrap is a noop nowadays, keeping it may cause confusion Signed-off-by: Sean Enck <enckse@gmail.com>
This commit is contained in:
parent
53c864c06d
commit
5f57352398
1 changed files with 2 additions and 2 deletions
|
@ -154,9 +154,9 @@ _pacman ()
|
||||||
_msg_info "Installing packages to '${work_dir}/airootfs/'..."
|
_msg_info "Installing packages to '${work_dir}/airootfs/'..."
|
||||||
|
|
||||||
if [[ "${quiet}" = "y" ]]; then
|
if [[ "${quiet}" = "y" ]]; then
|
||||||
pacstrap -C "${pacman_conf}" -c -d -G -M "${work_dir}/airootfs" $* &> /dev/null
|
pacstrap -C "${pacman_conf}" -c -G -M "${work_dir}/airootfs" $* &> /dev/null
|
||||||
else
|
else
|
||||||
pacstrap -C "${pacman_conf}" -c -d -G -M "${work_dir}/airootfs" $*
|
pacstrap -C "${pacman_conf}" -c -G -M "${work_dir}/airootfs" $*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_msg_info "Packages installed successfully!"
|
_msg_info "Packages installed successfully!"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue