From b9959beb1629d51825b9af64fdcdfa72c78b9277 Mon Sep 17 00:00:00 2001 From: Kevin Gartland Date: Fri, 26 Jan 2024 18:49:11 -0500 Subject: [PATCH] windows fix --- test/bats/justfile | 2 +- test/deploy_helper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bats/justfile b/test/bats/justfile index 2e47c5abc..1e0492dd8 100644 --- a/test/bats/justfile +++ b/test/bats/justfile @@ -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 diff --git a/test/deploy_helper.py b/test/deploy_helper.py index 00455c63f..5995c93b0 100755 --- a/test/deploy_helper.py +++ b/test/deploy_helper.py @@ -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)