torizon-templates-utils 0.0.2__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/PKG-INFO +1 -1
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/pyproject.toml +1 -1
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/tasks.py +6 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils.egg-info/PKG-INFO +1 -1
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/LICENSE +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/README.md +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/setup.cfg +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/__init__.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/animations.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/args.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/colors.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/debug.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/errors.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/network.py +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils.egg-info/SOURCES.txt +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils.egg-info/dependency_links.txt +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils.egg-info/requires.txt +0 -0
- {torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: torizon_templates_utils
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Package with utilities for Torizon Templates scripts
|
|
5
5
|
Author-email: Matheus Castello <matheus.castello@toradex.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/torizon/vscode-torizon-templates
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/tasks.py
RENAMED
|
@@ -517,6 +517,8 @@ class TaskRunner:
|
|
|
517
517
|
ret: List[str] = []
|
|
518
518
|
|
|
519
519
|
for value in env:
|
|
520
|
+
if "workspaceFolderBasename" in value:
|
|
521
|
+
value = self.__replace_env_var("workspaceFolderBasename", value)
|
|
520
522
|
if "workspaceFolder" in value:
|
|
521
523
|
value = self.__replace_env_var("workspaceFolder", value)
|
|
522
524
|
ret.append(value)
|
|
@@ -893,6 +895,10 @@ class TaskRunner:
|
|
|
893
895
|
|
|
894
896
|
# we need to change the cwd if it's set
|
|
895
897
|
if _cwd is not None:
|
|
898
|
+
_cwd = self.__check_workspace_folder([_cwd])[0]
|
|
899
|
+
_cwd = self.__check_config([_cwd])[0]
|
|
900
|
+
_cwd = self.__check_vscode_env([_cwd])[0]
|
|
901
|
+
|
|
896
902
|
os.chdir(_cwd)
|
|
897
903
|
|
|
898
904
|
# execute the task
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: torizon_templates_utils
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Package with utilities for Torizon Templates scripts
|
|
5
5
|
Author-email: Matheus Castello <matheus.castello@toradex.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/torizon/vscode-torizon-templates
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/args.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/colors.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/debug.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/errors.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.2 → torizon_templates_utils-0.0.3}/torizon_templates_utils/network.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|