mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
15 lines
223 B
Crystal
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)
|