Skip to content

Commit

Permalink
Merge pull request nushell#45 from nushell/tweak_twin_range
Browse files Browse the repository at this point in the history
Fix TWiN range
  • Loading branch information
JT committed Apr 30, 2021
2 parents bfb0929 + 09adc5a commit 995b15f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions this_week_in_nu.nu
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def do-work [] {
let query_prefix = "https://api.github.com/search/issues?q=repo:nushell/"
let query_date = $(seq date --days 7 -r | last)
# let query_select = " | get items | select url user.login title"
let query_suffix = $(build-string "+is:pr+is:merged+merged:%3E" $query_date)
let query_suffix = $(build-string "+is:pr+is:merged+merged:%3E%3D" $query_date)

# echo $site_table

Expand Down Expand Up @@ -52,4 +52,4 @@ def do-work [] {


build-string '# This week in Nushell #' $(char nl) $(char nl)
do-work | str collect
do-work | str collect

0 comments on commit 995b15f

Please sign in to comment.