diff options
| author | syeopite <syeopite@syeopite.dev> | 2021-09-18 14:48:57 -0700 |
|---|---|---|
| committer | syeopite <syeopite@syeopite.dev> | 2021-09-18 14:48:57 -0700 |
| commit | 4a0359c04e6cfa38f325f34306f503946940f4a6 (patch) | |
| tree | 1ef94b6c83f9cf9ec5f3c6c9ede0759606c3404d | |
| parent | 4e629ca858ee21acebe458342311afab3ecd4155 (diff) | |
| download | invidious-4a0359c04e6cfa38f325f34306f503946940f4a6.tar.gz invidious-4a0359c04e6cfa38f325f34306f503946940f4a6.tar.bz2 invidious-4a0359c04e6cfa38f325f34306f503946940f4a6.zip | |
Pass success msg from dep script during compile-time
| -rw-r--r-- | src/invidious.cr | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index 138e1f50..e29b73a8 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -133,11 +133,10 @@ end {% puts "\nChecking player dependencies...\n" %} {% if flag?(:minified_player_dependencies) %} - {% run("../scripts/fetch-player-dependencies.cr", "--minified") %} + {% puts run("../scripts/fetch-player-dependencies.cr", "--minified").stringify %} {% else %} - {% run("../scripts/fetch-player-dependencies.cr") %} + {% puts run("../scripts/fetch-player-dependencies.cr").stringify %} {% end %} -{% puts "Done!\n" %} # Start jobs |
