mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-05 21:02:42 +02:00
tools: Use env in shebangs
Having perl and bash in /usr/bin/ is less common than having them on PATH (e.g. Nix does not have them there).
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copy tests resources
|
||||
for dir in files gimpdir gimpdir-empty; do
|
||||
|
@@ -1,4 +1,6 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use warnings;
|
||||
|
||||
# This is gimp-mkenums, a perl script based on glib-mkenums.
|
||||
# It can be used just like glib-mkenums but offers one extra
|
||||
|
Reference in New Issue
Block a user