torizon-templates-utils 0.0.5__tar.gz → 0.0.7__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.5 → torizon_templates_utils-0.0.7}/PKG-INFO +1 -1
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/pyproject.toml +1 -1
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/tasks.py +7 -4
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils.egg-info/PKG-INFO +1 -1
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/LICENSE +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/README.md +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/setup.cfg +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/__init__.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/animations.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/args.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/colors.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/debug.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/errors.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/network.py +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils.egg-info/SOURCES.txt +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils.egg-info/dependency_links.txt +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils.egg-info/requires.txt +0 -0
- {torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/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.7
|
|
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.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/tasks.py
RENAMED
|
@@ -786,8 +786,8 @@ class TaskRunner:
|
|
|
786
786
|
exp_value_str = " ".join(expvalue)
|
|
787
787
|
|
|
788
788
|
if self.__debug:
|
|
789
|
-
print(f"Env: {env}={_env_value}")
|
|
790
|
-
print(f"Parsed Env: {env}={exp_value_str}")
|
|
789
|
+
print(f"Env: {env}={_env_value}", color=Color.YELLOW)
|
|
790
|
+
print(f"Parsed Env: {env}={exp_value_str}", color=Color.YELLOW)
|
|
791
791
|
|
|
792
792
|
return exp_value_str
|
|
793
793
|
|
|
@@ -873,8 +873,11 @@ class TaskRunner:
|
|
|
873
873
|
_args = self.__check_input(_args)
|
|
874
874
|
_args = self.__check_vscode_env(_args)
|
|
875
875
|
_args = self.__check_config(_args)
|
|
876
|
-
_args = self.
|
|
877
|
-
|
|
876
|
+
_args = self.__check_workspace_folder(_args)
|
|
877
|
+
# FIXME: These was in the powershell implementation
|
|
878
|
+
# but when used on Python it generates weird behavior
|
|
879
|
+
# _args = self.__check_long_args(_args)
|
|
880
|
+
# _args = self.__quoting_special_chars(_args)
|
|
878
881
|
|
|
879
882
|
# if in gitlab ci env we need to replace the DOCKER_HOST
|
|
880
883
|
if self.__gitlab_ci:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: torizon_templates_utils
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
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.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/args.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/colors.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/debug.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/errors.py
RENAMED
|
File without changes
|
{torizon_templates_utils-0.0.5 → torizon_templates_utils-0.0.7}/torizon_templates_utils/network.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|