rust-raspberrypi-OS-tutorials/utils/make_all.rb

17 lines
298 B
Ruby

#!/usr/bin/env ruby
crates = Dir["**/Cargo.toml"].sort!
crates.each do |x|
next if x.include?('raspi3_boot')
x = File.dirname(x)
puts "\n\n" + x.to_s + "\n\n"
Dir.chdir(x) do
unless system('make')
puts "\n\nBuild failed!"
exit(1) # Exit with error code
end
end
end