-
Notifications
You must be signed in to change notification settings - Fork 12
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
Minor cleanups #9
base: master
Are you sure you want to change the base?
Conversation
Use `#!/usr/bin/env perl` instead of `#!/usr/bin/perl` to allow overriding the default version of perl installed on the system.
Remove the Genesis binaries with compiled-in modules. Want changes to PerlLibs/Genesis2 to impact the program.
I did some poking around with these changes...it looks as though we will have to do some alterations before this works with 'pip install'...I will see what I can do... |
Okay, here's my plan, @grg see if this works for you
Hopefully that will happen by end of day today or tomorrow. Offline, in the background, I will work to unify the 'pip install' and manual-install paths so that we don't run into this problem in the future... |
Done and done.
|
Oops please do not merge this yet there appears to be a problem |
NVM the issue has been resolved, and it was of course not the fault of your code. Approval is re-applied, merge at will. Maybe do it fast before I get confused again :) |
Replaces #7 -- that PR got closed automatically after merging the license branch. I guess things work differently when merging from a fork vs merging from a different branch in the same repo.
Several small clean-ups:
#!/usr/bin/perl
to#!/usr/bin/env perl
to use the Perl version that appears first in the users path. This is useful when the user wants to use a different version of perl than that provided with the OS -- this may happen when using an older OS version for vendor tool compatibility, but a newer Perl has been installed.