Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Debug raw_env_settings
Browse files Browse the repository at this point in the history
  • Loading branch information
OlafSzmidt committed May 14, 2018
1 parent a2658c5 commit 324602d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aimmo_runner/minikube.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def start_cluster(minikube):

def build_docker_images(minikube):
print('Building docker images')
raw_env_settings = run_command([minikube, 'docker-env', '--shell="bash"'], False)

raw_env_settings = run_command([minikube, 'docker-env', '--shell="bash"'], True)
print("raw_env_settings: " + raw_env_settings)
matches = re.finditer(r'^export (.+)="(.+)"$', raw_env_settings, re.MULTILINE)
env = dict([(m.group(1), m.group(2)) for m in matches])

Expand Down

0 comments on commit 324602d

Please sign in to comment.