rust-raspberrypi-OS-tutorials/utils/clippy_all.rb
2019-10-27 23:10:50 +01:00

24 lines
424 B
Ruby
Executable File

#!/usr/bin/env ruby
# frozen_string_literal: true
# SPDX-License-Identifier: MIT
#
# 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}"
system('make clippy')
end
end
end
clippy_all if $PROGRAM_NAME == __FILE__