diff options
author | Teddy Wing | 2018-04-19 20:47:56 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-19 20:47:56 +0200 |
commit | 04d5752774cc1ebb97b1df11acb5f9eaf2fd443e (patch) | |
tree | b1b9f2b26b90b131093ddc7c756b64290fde9686 | |
parent | 5d3e15ad6684a6c991be759407b0227bfaf337c3 (diff) | |
download | redprine-04d5752774cc1ebb97b1df11acb5f9eaf2fd443e.tar.bz2 |
extract_data_from_pull_request_json(): Quote username
When I switched this over to use the variable, I forgot to retain the
double quotes around the username string required by `jq`. Add these in
so that the username can be parsed as a properly quoted string.
-rwxr-xr-x | redprine | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ function extract_data_from_pull_request_json () { created_at }) | map( - select(.user == '"$GITHUB_USERNAME"') + select(.user == "'"$GITHUB_USERNAME"'") )' } |