You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
install-dependencies.sh handles downloading font dependencies to the font/ directory using wget, and is executed immediately after npm install using the postinstall script hook.
With default options, if the connection hangs, wget only retries after 15 minutes, which can lead to needlessly slow builds.
Either refactor the wget command with shorter retry wait times specified (see StackExchange), or refactor entirely into Node world using download-cli.
The text was updated successfully, but these errors were encountered:
install-dependencies.sh
handles downloading font dependencies to thefont/
directory usingwget
, and is executed immediately afternpm install
using thepostinstall
script hook.With default options, if the connection hangs,
wget
only retries after 15 minutes, which can lead to needlessly slow builds.Either refactor the
wget
command with shorter retry wait times specified (see StackExchange), or refactor entirely into Node world usingdownload-cli
.The text was updated successfully, but these errors were encountered: