Commit 72b17cf4 authored by Alexander Lercher's avatar Alexander Lercher

Only deploy microservices in src/

parent 71a67547
......@@ -61,7 +61,7 @@ def delete_deployment(name) -> int:
if __name__ == '__main__':
deployment_file_paths = []
for p, _, f in os.walk('./'):
for p, _, f in os.walk('./src/'):
for file in f:
if 'deployment.yml' == file:
deployment_file_paths.append(os.path.normpath(p))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment