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