Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: KSP-RO/RP-1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f3a0f2cfc41a
Choose a base ref
...
head repository: KSP-RO/RP-1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 57cb644a4d69
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 17, 2017

  1. fix perl shebang line

    use `/usr/bin/env perl` to look it up in the PATH instead of
    the hardcoded /usr/bin/perl (typically the first perl in the user's
    PATH is going to be preferred).
    
    the -w flag causes issues when used with env but both of these
    scripts declare `use warnings` so that flag is redundant and
    removed from the shebang.
    
    Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
    lamont-granquist committed Jun 17, 2017
    Copy the full SHA
    1f73fbb View commit details

Commits on Jun 20, 2017

  1. Merge pull request #696 from lamont-granquist/lcg/fix-shebang

    fix perl shebang line
    NathanKell authored Jun 20, 2017
    Copy the full SHA
    57cb644 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 bin/makeversion
  2. +1 −1 bin/yml2mm
2 changes: 1 addition & 1 deletion bin/makeversion
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl
use 5.010;
use strict;
use warnings;
2 changes: 1 addition & 1 deletion bin/yml2mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl
use 5.010;
use strict;
use warnings;