-
Notifications
You must be signed in to change notification settings - Fork 37
Windows: Unable to run myprog.exe: astilectron does not unzip #20
Comments
I see 2 ways to get more info:
Let me know |
Hi, Thanks for the quick reply, I appreciate it. I added One new thing I noticed. I've set |
Is the Logger set in your
This is clearly a problem. I'd be you, I'd try removing |
Good news: I think I have something running, but I also think there is a bug in passing Details
Sorry, I missed that option. I set the logger, cleared my
After running this, I still see only two items in the
So it seems the unzip is not working, but no error logged, and then bundler simply exits at that point (before disembedding and unzipping electron). I looked inside the zip file and saw the name mismatch (the contents of the zip file were
(Note: My program was still running when I captured this log file, so we don't see it exit). Thanks for your help, I really appreciate it. If you need any help on tracking down the version mismatch bug, let me know. |
One more update. I checked my |
Final comment: Looking back to the root cause: I think that with all defaults (i.e., no |
First off, thanks for taking the time to investigate all this. What you're experiencing is really weird. Can you tell me which version you're using for |
Also, if you don't see any error in logs, my guess is that it's because your program doesn't process the error of |
This is what I have under
I'm not sure which version of bundler got put into Here is my
You are correct, my code was not capturing the return value. I've fixed that, but now that things are working for me, I'm not getting an error anymore. Thanks for your help |
I've inherited an old project from a developer (that no longer works with us) and need to fix a bug, but I am unable to run the (unmodified) program from any of my builds.
Symptoms (seen on both Windows 10 and Windows Server 2019):
If I look in my user's
...\AppData\MyProg\vendor
directory, I seeastilectron-v0.48.0.zip
andstatus.json
(which is empty:{}
).If I run the last version of the program the original developer delivered, then in the
...\AppData\MyProg\vendor
directory, I seestatus.json has
{"astilectron":{"version":"0.32.0"},"electron":{"windows-386":{"version":"4.0.1"}}}
It looks like something breaks trying to unzip the astilectron zip file, but I can't seem to find any error messages or system events that indicate why.
I tried pinning the astilectron version to 0.32.0 by setting
version_astilectron
inbundler.json
, but that seems to be ignored and we get 0.48.0 instead.Is there some way to turn on more logging or debugging output? I added logging to my part of the app, but I only see the log entries up until the time that
bootstrap.Run(...)
is called.The text was updated successfully, but these errors were encountered: