Hi,
I've used pyInstaller 2.0 by this method:
python.exe Makespec.py %script%.py --onefile -i icon.ico --name %name%
--windowed || exit 1
::--change spec file, generated by makespec--
python.exe Build.py %name%.spec
After makespec generated spec file, my script is fixing id, adding
additional files.
After this I call build.py
In pyInstaller 2.1 it is not working, if call makespec, it does nothing
I've looked at main.py in pyInstaller directory.
As I understand, it does not allow to call makespec without building after
it:
# Skip creating .spec when .spec file is supplied
if args[0].endswith('.spec'):
spec_file = args[0]
else:
spec_file = run_makespec(opts, args)
run_build(opts, spec_file, pyi_config)
How to call makespec without running build immediately after it?
Regards,
Sergey
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/groups/opt_out.