We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
自己写CI脚本需要用到非交互命令行模式
查看热更版本列表的时候会死循环: pushy versions --no-interactive
建议修改:
async function listVersions(appId) { let offset = 0; > if (NO_INTERACTIVE) { > await showVersion(appId, offset); > } else { while (true) { await showVersion(appId, offset); const cmd = await question('page Up/page Down/Begin/Quit(U/D/B/Q)'); switch (cmd.toLowerCase()) { case 'u': offset = Math.max(0, offset - 10); break; case 'd': offset += 10; break; case 'b': offset = 0; break; case 'q': return; } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
自己写CI脚本需要用到非交互命令行模式
查看热更版本列表的时候会死循环:
pushy versions --no-interactive
建议修改:
The text was updated successfully, but these errors were encountered: