1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 22:57:46 +00:00

Update old question mark commands any?/all?/empty? to any/all/is-empty (#287)

* Replace `all?` with `all` for nushell/nushell#6464

* Replace `any?` with `any` for nushell/nushell#6464

* Replace `emtpy?` with `is-empty`

Account for nushell/nushell#6464

* Ignore for `before_v0.60` scripts
This commit is contained in:
Stefan Holderbach 2022-09-05 16:43:01 +02:00 committed by GitHub
parent 17b40ee798
commit 203727b291
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 42 additions and 42 deletions

View file

@ -33,7 +33,7 @@ def do-work [] {
let site_json = (fetch -u $env.GITHUB_USERNAME -p $env.GITHUB_PASSWORD $query_string | get items | select html_url user.login title)
$"## ($row.site)(char nl)(char nl)"
if ($site_json | all? ($it | empty?)) {
if ($site_json | all ($it | is-empty)) {
$"none found this week(char nl)(char nl)"
} else {
$site_json | group-by user_login | transpose user prs | each { |row|
@ -55,7 +55,7 @@ def do-work [] {
}
})
if ($entries | all? ($it | empty?)) {
if ($entries | all ($it | is-empty)) {
# do nothing
} else {
$entries | str collect
@ -66,7 +66,7 @@ def do-work [] {
let week_num = ((seq date -b '2019-08-23' -n 7 | length) - 1)
$"# This week in Nushell #($week_num)(char nl)(char nl)"
if ($env | select GITHUB_USERNAME | empty?) || ($env | select GITHUB_PASSWORD | empty?) {
if ($env | select GITHUB_USERNAME | is-empty) || ($env | select GITHUB_PASSWORD | is-empty) {
echo 'Please set GITHUB_USERNAME and GITHUB_PASSWORD in $env to use this script'
} else {
do-work | str collect