Skip to content

Commit

Permalink
windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Gartland committed Jan 26, 2024
1 parent c1f9aa7 commit b9959be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/bats/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ test-contract:
fi

# content_list will contain all content in
content_list=$(python ../deploy_helper.py content/bundles)
content_list=$(python ../deploy_helper.py)
for i in ${content_list}
do
# only test when we have a .publisher-env file for the content
Expand Down
2 changes: 1 addition & 1 deletion test/deploy_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
script_dir = os.path.dirname(os.path.realpath(__file__))

# Specify the directory name
directory_name = sys.argv[1]
directory_name = os.path.join( "content", "bundles" )

# Create the full path to the directory
directory_path = os.path.join(script_dir, directory_name)
Expand Down

0 comments on commit b9959be

Please sign in to comment.