You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-raspberrypi-OS-tutorials/utils/ready_for_publish.rb

24 lines
411 B
Ruby

6 years ago
#!/usr/bin/env ruby
# frozen_string_literal: true
5 years ago
# SPDX-License-Identifier: MIT
#
# Copyright (c) 2018-2019 Andre Richter <andre.o.richter@gmail.com>
6 years ago
require_relative 'clean_all'
require_relative 'clippy_all'
require_relative 'fmt_all'
require_relative 'make_all'
require_relative 'sanity_checks'
5 years ago
require_relative 'diff_all'
6 years ago
clean_all
fmt_all
sanity_checks
clippy_all
6 years ago
clean_all
make_all
5 years ago
diff_all
5 years ago
clean_all