Merge pull request #8392 from reitermarkus/artifact-summarize

Add missing `summarize` method for `StageOnly`.
This commit is contained in:
Markus Reiter 2020-08-18 23:46:13 +02:00 committed by GitHub
commit 9a63811e8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,10 @@ module Cask
def to_a
[true]
end
def summarize
"true"
end
end
end
end