diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-05-16 21:34:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 21:34:56 +0300 |
commit | d0dd07007b4991a9e4b23da58f239422906596b8 (patch) | |
tree | 001a55dae02941a1ab157cb62c51ffc862999a4e /v1/combine-feature-fragments.py | |
parent | a7dc1749defe3b965051877e998bfc0a664059f6 (diff) |
fix bug: Release pipeline (#15)
* fix bug
* changing occurrences to src
Diffstat (limited to 'v1/combine-feature-fragments.py')
-rwxr-xr-x | v1/combine-feature-fragments.py | 4 |
1 files changed, 2 insertions, 2 deletions
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: |