Skip to content

Commit

Permalink
Merge pull request #67 from justinberry/fix/command-override-typo
Browse files Browse the repository at this point in the history
fix typo in compose command override method
  • Loading branch information
guilleiguaran authored Jan 2, 2025
2 parents b18019a + 5cae1b7 commit 2fb8834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose/lib/testcontainers/compose.rb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def compose_command(args)
# Prepare the args and command
args = args.split(" ") if args.is_a?(String)
compose_command = @command.dup
compose_command = compose_comand.split(" ") if compose_command.is_a?(String)
compose_command = compose_command.split(" ") if compose_command.is_a?(String)

# Add the compose files
file_args = @compose_filenames.map { |filename| "-f #{filename}" }
Expand Down

0 comments on commit 2fb8834

Please sign in to comment.