-
Notifications
You must be signed in to change notification settings - Fork 297
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
Wrong dist path using pyarmor.py build #13
Comments
The prefer way to run command build is cd /path/to/project
./pyarmor build So it's same as project directory. And if run command build in some other path, save the output here. |
Maybe you could add an optional argument |
By default, the target folder should be |
The default output path of project can be changed by command cd /path/to/project
./pyarmor config --output=/absolute/path/to/dist/pkgname
./pyarmor build
# or in any other path
pyarmor.py build /path/to/project |
I have added optional argument # First make runtime files only
pyarmor.py build --only-runtime --output=/path/to/dist /path/to/project
# Then obfuscate package without runtime files
pyarmor.py build --no-runtime --output=/path/to/dist/package_name /path/to/project |
Thanks, that's ok for me - didn't know about the config option. However a user would expect to get the ready-to-run package in /dist without having to specify an |
Using
pyarmor.py build /path/to/project
creates the dist folder in the current working directory. Shouldn't the target dist be located in the specified project directory?The text was updated successfully, but these errors were encountered: