mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
17 lines
298 B
Ruby
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
|