Skip to content

Commit ee82f2f

Browse files
committed
fix: Return jq output in single line to fix sed
1 parent b212265 commit ee82f2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config_continue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,4 +300,4 @@ workflows:
300300
tags:
301301
only: /dev-v[0-9]+(\.[0-9]+)*/
302302
branches:
303-
only: /test\/.*/
303+
only: /test\/.*/

.circleci/generateConfig.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
frontendDriverJson=`cat ../frontendDriverInterfaceSupported.json`
2-
frontendDriverArray=`echo $frontendDriverJson | jq ".versions"`
2+
frontendDriverArray=`echo $frontendDriverJson | jq -c ".versions"`
33

44
coreDriverJson=`cat ../coreDriverInterfaceSupported.json`
5-
coreDriverArray=`echo $coreDriverJson | jq ".versions"`
5+
coreDriverArray=`echo $coreDriverJson | jq -c ".versions"`
66

77
if [ -z "$SUPERTOKENS_API_KEY" ]; then
88
echo "SUPERTOKENS_API_KEY missing"

0 commit comments

Comments
 (0)