File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 77fi
88
99if [[ " ${1} " == " down" ]]; then
10- docker- compose -f <( sed -e " s;%%VOLUME%%;${volume} ;g" docker-compose.tmpl.yml) down
10+ docker compose -f <( sed -e " s;%%VOLUME%%;${volume} ;g" docker-compose.tmpl.yml) down
1111else
12- docker- compose -f <( sed -e " s;%%VOLUME%%;${volume} ;g" docker-compose.tmpl.yml) up -d
12+ docker compose -f <( sed -e " s;%%VOLUME%%;${volume} ;g" docker-compose.tmpl.yml) up -d
1313fi
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ def file_content():
2525 .decode ("utf-8" )
2626 .strip ()
2727 )
28- except AttributeError :
28+ except AttributeError as e :
29+ print (f"WHY IS THIS ERRORING: { e } " )
2930 # Needed for python < 3.9
3031 return pkg_resources .resource_string (
3132 "pytest_html" , os .path .join ("assets" , "style.css" )
You can’t perform that action at this time.
0 commit comments