Skip to content

Commit

Permalink
Fix extra plugins path root
Browse files Browse the repository at this point in the history
  • Loading branch information
Pikachu920 committed Feb 5, 2024
1 parent e0ce3bc commit 00a1238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class EnvironmentResource(TypedDict):
extra_plugins_directory = None
extra_plugins_directory_string = os.environ.get("INPUT_EXTRA_PLUGINS_DIRECTORY", None)
if extra_plugins_directory_string is not None and extra_plugins_directory_string != "":
extra_plugins_directory = Path(extra_plugins_directory_string)
extra_plugins_directory = github_workspace_directory / extra_plugins_directory_string

print("Configuration:")
print(f" Test script directory: {test_script_directory}")
Expand Down

0 comments on commit 00a1238

Please sign in to comment.