We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2f87f commit ce3d00eCopy full SHA for ce3d00e
1 file changed
tools/fullbuild.sh
@@ -106,7 +106,10 @@ build() {
106
fi
107
108
109
- sudo pacman -Sccc --noconfirm > /dev/null 2>&1
+
110
+ if [[ "${simulation}" = false ]]; then
111
+ sudo pacman -Sccc --noconfirm > /dev/null 2>&1
112
+ fi
113
}
114
115
_help() {
@@ -189,6 +192,11 @@ if [[ ! -d "${work_dir}" ]]; then
189
192
mkdir -p "${work_dir}"
190
193
191
194
195
+if [[ "${simulation}" = false ]]; then
196
+ msg_info "Update the package database."
197
+ sudo pacman -Syy
198
+fi
199
200
for cha in ${channnels[@]}; do
201
for arch in ${architectures[@]}; do
202
for lang in ${locale_list[@]}; do
0 commit comments