From d0dd07007b4991a9e4b23da58f239422906596b8 Mon Sep 17 00:00:00 2001 From: Samruddhi Khandale Date: Mon, 16 May 2022 11:34:56 -0700 Subject: fix bug: Release pipeline (#15) * fix bug * changing occurrences to src --- v1/combine-feature-fragments.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'v1/combine-feature-fragments.py') diff --git a/v1/combine-feature-fragments.py b/v1/combine-feature-fragments.py index bbc9913..39bc8d0 100755 --- a/v1/combine-feature-fragments.py +++ b/v1/combine-feature-fragments.py @@ -4,7 +4,7 @@ import os -featureDirs = os.listdir('./collection') +featureDirs = os.listdir('./src') beginning = """ { @@ -22,7 +22,7 @@ count = len(featureDirs) for fDir in featureDirs: count -= 1 - config = f'./collection/{fDir}/feature.json' + config = f'./src/{fDir}/feature.json' data = open(config, "r").read() middle += f'{data}' if count != 0: -- cgit v1.2.3