mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-19 04:37:51 +00:00
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
|