Skip to content

Commit 9f4add7

Browse files
Bug fix in mulled.py
This bug was causing running docker with sudo while it should not
1 parent dd2ab48 commit 9f4add7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/galaxy/tools/deps/container_resolvers

lib/galaxy/tools/deps/container_resolvers/mulled.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434

3535
def list_cached_mulled_images(namespace=None):
36-
command = build_docker_images_command(truncate=True, sudo_docker=False)
36+
command = build_docker_images_command(truncate=True, sudo=False)
3737
command = "%s | tail -n +2 | tr -s ' ' | cut -d' ' -f1,2" % command
3838
images_and_versions = check_output(command)
3939
name_filter = get_filter(namespace)

0 commit comments

Comments
 (0)