mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-15 18:14:02 +00:00
27 lines
580 B
Ruby
Executable File
27 lines
580 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
#
|
|
# Copyright (c) 2018-2019 Andre Richter <andre.o.richter@gmail.com>
|
|
|
|
require_relative 'helpers/tutorial_folders.rb'
|
|
|
|
def clippy_all
|
|
crates = tutorial_folders
|
|
|
|
crates.each do |x|
|
|
x = File.dirname(x)
|
|
|
|
Dir.chdir(x) do
|
|
puts "Clippy: #{x}"
|
|
unless system('make clippy')
|
|
puts "\n\nClippy failed!"
|
|
exit(1) # Exit with error code
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
clippy_all if $PROGRAM_NAME == __FILE__
|