mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
24 lines
411 B
Ruby
Executable File
24 lines
411 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 'clean_all'
|
|
require_relative 'clippy_all'
|
|
require_relative 'fmt_all'
|
|
require_relative 'make_all'
|
|
require_relative 'sanity_checks'
|
|
require_relative 'diff_all'
|
|
|
|
clean_all
|
|
fmt_all
|
|
sanity_checks
|
|
clippy_all
|
|
|
|
clean_all
|
|
make_all
|
|
diff_all
|
|
clean_all
|