summaryrefslogtreecommitdiff
path: root/scripts/no-dir-check
blob: bbb303da9b2ae534bf3a8db6577f63ccf7826c6f (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby
# frozen_string_literal: true

dir_name = ARGV.first || abort('ERROR: Please specify a directory.')
dir_path = File.expand_path(dir_name, "#{__dir__}/..")

if Dir.exist?(dir_path)
  abort("ERROR: This repository contains #{dir_name}/ directory. #{dir_name.upcase} changes should go to the corresponding repository.")
end