Fix shiv package #50

Merged
telackey merged 2 commits from dboreham/fix-shiv-package into main 2022-11-16 05:03:39 +00:00
6 changed files with 3 additions and 3 deletions
Showing only changes of commit 5a69bf471b - Show all commits

View File

@ -55,7 +55,7 @@ def command(ctx, include, exclude):
if not os.path.isdir(dev_root_path):
print('Dev root directory doesn\'t exist, creating')
with open("container-image-list.txt") as container_list_file:
with open("data/container-image-list.txt") as container_list_file:
containers = container_list_file.read().splitlines()
if verbose:

View File

@ -48,7 +48,7 @@ def command(ctx, include, exclude, cluster, command, services):
if verbose:
print(f"Using cluster name: {cluster}")
with open("pod-list.txt") as pod_list_file:
with open("data/pod-list.txt") as pod_list_file:
pods = pod_list_file.read().splitlines()
if verbose:

View File

@ -89,7 +89,7 @@ def command(ctx, include, exclude, check_only, pull, branches_file):
print('Dev root directory doesn\'t exist, creating')
os.makedirs(dev_root_path)
with open("repository-list.txt") as repository_list_file:
with open("data/repository-list.txt") as repository_list_file:
all_repos = repository_list_file.read().splitlines()
if verbose: