From 765e4a1c2d6b09f1f74c6e5dfd0051a1c685b0c2 Mon Sep 17 00:00:00 2001 From: Mathieu Bridon Date: Thu, 28 Aug 2014 17:34:19 +0200 Subject: [PATCH] Fix the shebang lines Using /usr/bin/env can lead to issues on users' systems where they installed their own version of the interpreters, and these are incompatible with the system one we ship. --- docx2txt.pl | 2 +- docx2txt.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docx2txt.pl b/docx2txt.pl index 7398de3..fae6389 100755 --- a/docx2txt.pl +++ b/docx2txt.pl @@ -1,4 +1,4 @@ -#!/usr/bin/env perl +#!/usr/bin/perl # docx2txt, a command-line utility to convert Docx documents to text format. # Copyright (C) 2008-2014 Sandeep Kumar diff --git a/docx2txt.sh b/docx2txt.sh index a847848..3499c80 100755 --- a/docx2txt.sh +++ b/docx2txt.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/bash # docx2txt, a command-line utility to convert Docx documents to text format. # Copyright (C) 2008 Sandeep Kumar -- 2.1.0