Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit b0ecb40

Browse files
committed
Static assets are not saved to the root of the project during cache warm up
1 parent f6d1c66 commit b0ecb40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/guest/warm_up_cache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function loadByUrl()
99
log "Warming up ${1}"
1010
wget -q -O - "${1}" | grep -o "http://${host_name}[^\"]*" | grep -o ".*\.[A-Za-z]*$" | while read -r link ; do
1111
log "Warming up ${link}"
12-
wget -q ${link} 2> >(log) > >(log)
12+
wget -q -O - ${link} &> /dev/null
1313
done
1414
}
1515

0 commit comments

Comments
 (0)