summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-30 22:30:33 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-30 22:30:33 +0100
commit0e37c5753139092bd68a1ecd7cb38473910651ea (patch)
tree5ad00c837a509f4a6ab9ac7b4b7cbf748a820900
parente849a5f21a3117fec7a64b26763d2780b1ace166 (diff)
downloadorchestration-0e37c5753139092bd68a1ecd7cb38473910651ea.tar.gz
Fix repo path
-rw-r--r--source/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.py b/source/configure.py
index fd0d4ad..e719c45 100644
--- a/source/configure.py
+++ b/source/configure.py
@@ -30,7 +30,7 @@ def load_slave_type_configs():
def load_pipeline_configs():
''' load the pipelines '''
import yaml, os
- REPO_DIR = 'ciatconfig/slave-types'
+ REPO_DIR = 'ciatconfig/pipelines'
pipelines = []
for pipeline in os.listdir(REPO_DIR):
if not pipeline.endswith('.yaml'): continue