From b3765d7eb6fc32d852cf5dc0dc381beed79b7980 Mon Sep 17 00:00:00 2001 From: Dan Villiom Podlaski Christiansen Date: Wed, 12 Sep 2012 13:26:45 +0200 Subject: [PATCH] Use any Perl on the path, rather than hard-coding /usr/bin/perl This allows using Perl from MacPorts on OS X, as the system Perl lacks certain modules, e.g. YAML. --- bin/ard-parse-boards | 2 +- bin/ard-reset-arduino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ard-parse-boards b/bin/ard-parse-boards index e2de71b..75db967 100755 --- a/bin/ard-parse-boards +++ b/bin/ard-parse-boards @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/env perl use strict; use warnings; diff --git a/bin/ard-reset-arduino b/bin/ard-reset-arduino index 22c7109..98e5c8c 100755 --- a/bin/ard-reset-arduino +++ b/bin/ard-reset-arduino @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/env perl use strict; use warnings;