7 lines
294 B
Ruby
7 lines
294 B
Ruby
require "yaml"
|
|
|
|
sources = `git ls-files -z ../..`.split("\x0")
|
|
paths = YAML.load_file("../../.github/workflows/bindings-ruby.yml")[true]["push"]["paths"]
|
|
paths.delete "bindings/ruby/**"
|
|
EXTSOURCES = (Dir.glob(paths, base: "../..").collect {|path| "../../#{path}"} << "../../LICENSE") & sources
|