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.

@@ -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]\n")
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: