rust-raspberrypi-OS-tutorials/utils/ready_for_publish.rb
2019-10-27 23:11:57 +01:00

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