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.

35 lines
772 B
Ruby

#!/usr/bin/env ruby
# frozen_string_literal: true
# SPDX-License-Identifier: MIT OR Apache-2.0
#
# Copyright (c) 2018-2020 Andre Richter <andre.o.richter@gmail.com>
require_relative 'helpers/tutorial_folders.rb'
def fmt_all(check = false)
crates = tutorial_folders
args = if check != false
'-- --check'
else
''
end
crates.each do |x|
x = File.dirname(x)
Dir.chdir(x) do
puts "Format #{x}"
unless system("cargo fmt #{args}")
puts "\n\nFmt check failed!"
exit(1) # Exit with error code
end
end
end
end
if $PROGRAM_NAME == __FILE__
# Any command line argument means --check
fmt_all(!ARGV[0].nil?)
end