Skip to content
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

How to run "SHOW=1 node epic-games" on a Windows CMD #314

Open
t3hsuppli3r opened this issue Mar 29, 2024 · 1 comment
Open

How to run "SHOW=1 node epic-games" on a Windows CMD #314

t3hsuppli3r opened this issue Mar 29, 2024 · 1 comment

Comments

@t3hsuppli3r
Copy link

It seems those "SHOW=1 node epic-games" and "EMAIL=foo@bar.baz SHOW=1 node epic-games" works only on Linux/macOS OOTB.

Is there a workaround that will let me login with the browser under Windows CMD ?

image

@jaxparrow07
Copy link

CMD has a different syntax for environment variables.

The SHOW=1 goes like this ( have to run one by one )

set SHOW=1
set EMAIL=""
<node js command here>

If you want to execute them on a single line/execution. You'll have to append call before the calling function so the variables take effect.

set SHOW=1 && set EMAIL="" && call <node js command here>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants