From: Tomasz CEDRO Date: Tue, 3 Jun 2014 15:33:10 +0000 (+0200) Subject: Fixed package.sh script interpreter invocation. X-Git-Tag: 14.06~3^2^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9975ef6ea299be3f454c59f2fcfaeeabb9087248;p=cura.git Fixed package.sh script interpreter invocation. Using "/usr/bin/env bash" makes it possible to call bash properly on various operating systems where the binary location can differ. Tested on FreeBSD, Darwin, Linux. --- diff --git a/package.sh b/package.sh index 1d9e001b..302fd905 100755 --- a/package.sh +++ b/package.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # This script is to package the Cura package for Windows/Linux and Mac OS X # This script should run under Linux and Mac OS X, as well as Windows with Cygwin.