diff options
author | Teddy Wing | 2018-04-18 22:25:13 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-18 22:25:13 +0200 |
commit | e117b7ca438ccb74ef303095670ef8007cb8c485 (patch) | |
tree | 591e80d20c6ca6d0e44a3346045deef34df09cd0 | |
parent | b140fe3a32a16d50f06e307ecf59d9c860f1a591 (diff) | |
download | redprine-e117b7ca438ccb74ef303095670ef8007cb8c485.tar.bz2 |
fetch_pull_requests(): Quote variable
Must have forgotten to do this.
-rwxr-xr-x | redprine | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ function fetch_pull_requests () { --header "Authorization: Bearer ${GITHUB_TOKEN}" \ --location "https://api.github.com/repos/${owner_repo}/pulls") - echo $pull_requests + echo "$pull_requests" } function cache_my_pull_requests () { |