mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Rename fetch_videojs* to fetch_player*
This commit is contained in:
parent
f47b588b91
commit
06a1d2ac41
2 changed files with 13 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue