Skip to content

Commit

Permalink
Merge pull request #61 from madmax983/feature/CI
Browse files Browse the repository at this point in the history
tr to get rid of single quotes
  • Loading branch information
madmax983 authored May 3, 2021
2 parents 51013cf + 66b2a1a commit ee7eb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RESULT_JSON=`sfdx force:data:soql:query -u devhub -t -q "SELECT Dependencies FRO

# Parse the json string using python to test whether the result json contains a list of ids or not.

DEPENDENCIES=`echo $RESULT_JSON | jq -r '.result.records[0].Dependencies.ids | map_values(.subscriberPackageVersionId) | @sh'`
DEPENDENCIES=`echo $RESULT_JSON | jq -r '.result.records[0].Dependencies.ids | map_values(.subscriberPackageVersionId) | @sh' | tr -d \'`


# If the parsed dependencies is None, the package has no dependencies. Otherwise, parse the result into a list of ids.
Expand Down

0 comments on commit ee7eb35

Please sign in to comment.