Skip to content

Commit

Permalink
Change type of up_args param for docker_compose type
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarrolle committed Sep 10, 2024
1 parent 5a0775b commit 07bf949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puppet/type/docker_compose.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def refresh
newparam(:up_args) do
desc 'Arguments to be passed directly to docker-compose up.'
validate do |value|
raise _('up_args should be a String') unless value.is_a? String
raise _('up_args should be a String') unless value.is_a? Array
end
end

Expand Down

1 comment on commit 07bf949

@mcarrolle
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.