guru/dev-util/gshards/files/0.1/gshards-has-targets.cr
Anna (cybertailor) Vyalkova 582cf2584b
dev-util/gshards: new package, add 0.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2022-11-08 22:11:30 +05:00

15 lines
223 B
Crystal

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
require "yaml"
yaml = File.open("shard.yml") do |file|
YAML.parse(file)
end
if yaml["targets"]?
exit(0)
end
exit(1)