Skip to content

Commit fab1726

Browse files
committed
fix: update build process to include bundle install before lein install
1 parent c1ecd9c commit fab1726

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
@@ -42,7 +42,7 @@ namespace :vox do
4242
run_command("cd #{ezbake_dir} && lein install", silent: false, print_command: true)
4343

4444
puts "Building openvox-server"
45-
run_command("rm -rf ruby && rm -rf output && lein install")
45+
run_command("rm -rf ruby && rm -rf output && bundle install --without test && lein install", silent: false, print_command: true)
4646
run_command("COW=\"#{@debs}\" MOCK=\"#{@rpms}\" GEM_SOURCE='https://rubygems.org' EZBAKE_ALLOW_UNREPRODUCIBLE_BUILDS=true EZBAKE_NODEPLOY=true LEIN_PROFILES=ezbake lein with-profile user,ezbake,provided ezbake local-build", silent: false, print_command: true)
4747
run_command("sudo chown -R $USER output", print_command: true)
4848
Dir.glob('output/**/*i386*').each { |f| FileUtils.rm_rf(f) }

0 commit comments

Comments
 (0)