unitysvc-services 0.1.10__py3-none-any.whl → 0.1.11__py3-none-any.whl
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.
Potentially problematic release.
This version of unitysvc-services might be problematic. Click here for more details.
- unitysvc_services/api.py +2 -2
- unitysvc_services/interactive_prompt.py +1129 -0
- unitysvc_services/populate.py +11 -4
- unitysvc_services/publisher.py +225 -97
- unitysvc_services/scaffold.py +143 -66
- unitysvc_services/test.py +21 -43
- {unitysvc_services-0.1.10.dist-info → unitysvc_services-0.1.11.dist-info}/METADATA +1 -1
- {unitysvc_services-0.1.10.dist-info → unitysvc_services-0.1.11.dist-info}/RECORD +12 -11
- {unitysvc_services-0.1.10.dist-info → unitysvc_services-0.1.11.dist-info}/WHEEL +0 -0
- {unitysvc_services-0.1.10.dist-info → unitysvc_services-0.1.11.dist-info}/entry_points.txt +0 -0
- {unitysvc_services-0.1.10.dist-info → unitysvc_services-0.1.11.dist-info}/licenses/LICENSE +0 -0
- {unitysvc_services-0.1.10.dist-info → unitysvc_services-0.1.11.dist-info}/top_level.txt +0 -0
unitysvc_services/populate.py
CHANGED
|
@@ -132,13 +132,20 @@ def populate(
|
|
|
132
132
|
|
|
133
133
|
full_command = ["python3"] + cmd_parts
|
|
134
134
|
|
|
135
|
-
console.print(f"[blue] Command:[/blue] {' '.join(full_command)}")
|
|
136
|
-
console.print(f"[blue] Working directory:[/blue] {provider_dir}")
|
|
137
|
-
|
|
138
135
|
if dry_run:
|
|
139
|
-
console.print("[yellow] [DRY-RUN] Would execute command[/yellow]
|
|
136
|
+
console.print("[yellow] [DRY-RUN] Would execute command[/yellow]")
|
|
137
|
+
console.print(f"[yellow] {' '.join(full_command)}[/yellow]")
|
|
138
|
+
console.print(f"[yellow] under {provider_dir}[/yellow]")
|
|
139
|
+
if provider_access_info:
|
|
140
|
+
console.print("[yellow] with:[/yellow]")
|
|
141
|
+
for key, value in provider_access_info.items():
|
|
142
|
+
console.print(f"[yellow] {key}={value}[/yellow]")
|
|
143
|
+
console.print()
|
|
140
144
|
total_skipped += 1
|
|
141
145
|
continue
|
|
146
|
+
else:
|
|
147
|
+
console.print(f"[blue] Command:[/blue] {' '.join(full_command)}")
|
|
148
|
+
console.print(f"[blue] Working directory:[/blue] {provider_dir}")
|
|
142
149
|
|
|
143
150
|
# Execute the command
|
|
144
151
|
try:
|