clarin-eric / ParlaMint

ParlaMint: Comparable Parliamentary Corpora
https://clarin-eric.github.io/ParlaMint/
41 stars 52 forks source link

use perl from environment #855

Closed matyaskopp closed 6 months ago

matyaskopp commented 6 months ago

currently, in most scripts, the hash-bank line contains the system Perl:

#!/usr/bin/perl

but it should be replaced with

#!/usr/bin/env perl

it is safer because both commands perl script.pl and ./script.pl use the same Perl and you can use custom Perl with perlbrew.

matyaskopp commented 6 months ago

@TomazErjavec changed in all '*.pl' scripts, there should be no change for you and Tantra, because you are using the system perl

(related to #838)

TomazErjavec commented 6 months ago

@TomazErjavec changed in all '*.pl' scripts, there should be no change for you and Tantra, because you are using the system perl

Thanks @matyaskopp, indeed, it seems just fine.