Skip to content

Commit 4e386c8

Browse files
committed
Don't build ezbake when EZBAKE_BRANCH is empty
1 parent 6edd759 commit 4e386c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/build.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ namespace :vox do
8989
end
9090

9191
libs_to_build_manually = {}
92-
if ENV['EZBAKE_BRANCH']
92+
if ENV['EZBAKE_BRANCH'] && !ENV['EZBAKE_BRANCH'].strip.empty?
9393
libs_to_build_manually['ezbake'] = {
9494
:repo => ENV.fetch('EZBAKE_REPO', 'https://github.com/openvoxproject/ezbake'),
9595
:branch => ENV.fetch('EZBAKE_BRANCH', 'main'),

0 commit comments

Comments
 (0)