You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|$python_exe -c "import sys, json; res = json.load(sys.stdin); [print(str(pr['number']) + ': ' + pr['title']) for pr in res];")
35
+
|$python_exe -c "import sys, json; res = json.load(sys.stdin); [print(str(pr['number']) + ': ' + str(pr['title'])) for pr in res] if 'pr' in res else sys.exit(1);")
36
+
if [ $?-ne 0 ];then
37
+
usage
38
+
exit 1
39
+
fi
36
40
echo"$pr_prompt"
37
41
echo""
38
42
pr_number=$(echo "$pr_prompt"| sed -n -e "s/\([[:alnum:]]\+\).*/\1/p"| tail -n1)
0 commit comments