Rename fetch_videojs* to fetch_player*

This commit is contained in:
syeopite 2021-09-11 22:47:12 -07:00
parent f47b588b91
commit 06a1d2ac41
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82
2 changed files with 13 additions and 0 deletions

View File

@ -126,6 +126,19 @@ if CONFIG.check_tables
end
end
# Resolve player dependencies. This is done at compile time.
#
# 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?
{% puts "\nChecking player dependencies...\n" %}
{% if flag?(:minified_player_dependencies) %}
{% run("../scripts/fetch-player-dependencies.cr", "--minified") %}
{% else %}
{% run("../scripts/fetch-player-dependencies.cr") %}
{% end %}
{% puts "Done!\n" %}
# Start jobs
if CONFIG.channel_threads > 0