Compare commits

...

2 Commits

Author SHA1 Message Date
Keyan 1d4ba7b9a6
Update awards.csv 2024-04-05 08:47:58 -05:00
Felipe Bueno cc8b16a7e3
Fix for #1023 sndev: 317: Syntax error: redirection unexpected (#1024)
* printf -> echo

* Update sndev

---------

Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2024-04-05 08:40:12 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ SatsAllDay,issue,#1015,#1010,good-first-issue,,,,20k,weareallsatoshi@getalby.com
jp30566347,pr,#991,#718,good-first-issue,,,,20k,jpmelanson@getalby.com,2024-04-04
benalleng,helpfulness,#1015,#1010,good-first-issue,,,,2k,BenAllenG@stacker.news,2024-04-04
felipebueno,pr,#1012,,,,,,20k,felipe@stacker.news,2024-04-24
abhiShandy,helpfulness,#1018,#1006,good-first-issue,,,identified problem,2k,???,2024-04-24
abhiShandy,helpfulness,#1018,#1006,good-first-issue,,,identified problem,2k,bolt11,2024-04-24
benalleng,issue,#1018,#1006,good-first-issue,,,,2k,BenAllenG@stacker.news,2024-04-04
benalleng,issue,#1011,#993,easy,high,,,20k,BenAllenG@stacker.news,2024-04-04
benalleng,pr,#1011,#993,easy,high,,tortured them,200k,BenAllenG@stacker.news,2024-04-04

1 name type pr id issue ids difficulty priority changes requested notes amount receive method date paid
34 jp30566347 pr #991 #718 good-first-issue 20k jpmelanson@getalby.com 2024-04-04
35 benalleng helpfulness #1015 #1010 good-first-issue 2k BenAllenG@stacker.news 2024-04-04
36 felipebueno pr #1012 20k felipe@stacker.news 2024-04-24
37 abhiShandy helpfulness #1018 #1006 good-first-issue identified problem 2k ??? bolt11 2024-04-24
38 benalleng issue #1018 #1006 good-first-issue 2k BenAllenG@stacker.news 2024-04-04
39 benalleng issue #1011 #993 easy high 20k BenAllenG@stacker.news 2024-04-04
40 benalleng pr #1011 #993 easy high tortured them 200k BenAllenG@stacker.news 2024-04-04

2
sndev
View File

@ -314,7 +314,7 @@ __sndev__pr_track() {
push=$(git remote -v | grep -e "$url .*push" | head -n1) || true
if [ -n "$push" ]; then
remote=$(printf "%s" $(cut -f 1 <<<"$push"))
remote=$(echo "$push" | cut -f 1)
else
remote=$(echo "$json" | grep -e '"login"' | head -n1 | sed -e 's/^.*"login":[[:space:]]*"//; s/",[[:space:]]*$//')
git remote remove "$remote" 1>/dev/null 2>&1 || true