From 37c4e006d4b356ed2adbd8f795791179c82af230 Mon Sep 17 00:00:00 2001 From: David Cook Date: Wed, 8 May 2013 18:00:29 +1000 Subject: [PATCH] Bug 10156 - Fix usr/bin/perl path for get_report_social_data.pl Content-Type: text/plain; charset=utf-8 Currently, the perl path for get_report_social_data.pl is "#!/bin/perl" when it should be "#!/usr/bin/perl". While I'm not entirely sure how to test this, rangi did mention: 23:47 (it wouldnt work on my debian install) 23:48 zsh: no such file or directory: /bin/perl It's a pretty trivial change, so I'm not sure it needs much of a test plan. Signed-off-by: Magnus Enger Before the patch "grep -r '#!/bin/perl' in the misc dir shows one file with this line, and it is indeed get_report_social_data.pl. After the patch there are no occurrences left. Passed-QA-by: Marcel de Rooy --- .../cronjobs/social_data/get_report_social_data.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/misc/cronjobs/social_data/get_report_social_data.pl b/misc/cronjobs/social_data/get_report_social_data.pl index 7069e24..89d6b35 100644 --- a/misc/cronjobs/social_data/get_report_social_data.pl +++ b/misc/cronjobs/social_data/get_report_social_data.pl @@ -1,4 +1,4 @@ -#!/bin/perl +#!/usr/bin/perl use Modern::Perl; use C4::SocialData; -- 1.7.7.6