add more explanation about checking the player dependencies

このコミットが含まれているのは:
Émilien Devos 2022-07-12 08:38:22 +00:00 committed by GitHub
コミット 586000ca3d
1個のファイルの変更2行の追加1行の削除

ファイルの表示

@ -133,12 +133,13 @@ Invidious::Database.check_integrity(CONFIG)
# Running the script by itself would show some colorful feedback while this doesn't. # Running the script by itself would show some colorful feedback while this doesn't.
# Perhaps we should just move the script to runtime in order to get that feedback? # Perhaps we should just move the script to runtime in order to get that feedback?
{% puts "\nChecking player dependencies...\n" %} {% puts "\nChecking player dependencies, this may take more than 20 minutes... If it is stuck, check your internet connection.\n" %}
{% if flag?(:minified_player_dependencies) %} {% if flag?(:minified_player_dependencies) %}
{% puts run("../scripts/fetch-player-dependencies.cr", "--minified").stringify %} {% puts run("../scripts/fetch-player-dependencies.cr", "--minified").stringify %}
{% else %} {% else %}
{% puts run("../scripts/fetch-player-dependencies.cr").stringify %} {% puts run("../scripts/fetch-player-dependencies.cr").stringify %}
{% end %} {% end %}
{% puts "\nDone checking player dependencies, now compiling Invidious...\n" %}
{% end %} {% end %}
# Start jobs # Start jobs