8000 Forward command line arguments for console launchers by firai · Pull Request #1569 · winpython/winpython · GitHub
[go: up one dir, main page]

Skip to content

Forward command line arguments for console launchers #1569

New issue

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

Merged
merged 9 commits into from
May 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix args test
  • Loading branch information
firai authored Apr 25, 2025
commit c4564c0480dd5bb568f000946a18957431a68d66
2 changes: 1 addition & 1 deletion portable/launchers_src/launcher_template_CONSOLE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ int main() {
std::wstring target = L"cmd.exe /c \"" LAUNCH_TARGET L"\"";

// Append arguments if present
if (args) {
if (!args.empty()) {
target += L" " + args;
}

Expand Down
0