diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2022-02-08 03:05:49 +0100 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2022-02-08 03:05:49 +0100 |
| commit | 492d1144e0dff85bc58071037ef0980c4027cc69 (patch) | |
| tree | 453980da66bc9c60ed1aeac1b104234cf72c197c | |
| parent | 4f4b19a962999ad191b1312e53aa44c8180d22fa (diff) | |
| download | invidious-492d1144e0dff85bc58071037ef0980c4027cc69.tar.gz invidious-492d1144e0dff85bc58071037ef0980c4027cc69.tar.bz2 invidious-492d1144e0dff85bc58071037ef0980c4027cc69.zip | |
Apply changes from code review
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | src/invidious.cr | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -62,7 +62,7 @@ test: crystal spec verify: - crystal build src/invidious.cr -Ddont_fetch_videojs \ + crystal build src/invidious.cr -Dskip_videojs_download \ --no-codegen --progress --stats --error-trace diff --git a/src/invidious.cr b/src/invidious.cr index 79429404..1ff70905 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -114,7 +114,7 @@ LOGGER = Invidious::LogHandler.new(OUTPUT, CONFIG.log_level) # Check table integrity Invidious::Database.check_integrity(CONFIG) -{% unless flag?(:dont_fetch_videojs) %} +{% if !flag?(:skip_videojs_download) %} # Resolve player dependencies. This is done at compile time. # # Running the script by itself would show some colorful feedback while this doesn't. |
