From 088091ca409492cfcf15a6995e062fe8d91b1bd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Santoro?= Date: Tue, 3 Jul 2012 06:34:11 -0700 Subject: [PATCH] Make bin/arc less linux-centered, more UNIX-agnostic Summary: Using /usr/bin/env in #! to allow the arc script to run as is in every UNIX OSes, like FreeBSD where bash is installed in /usr/local/bin/bash. Test Plan: Tested on Solaris, Ubuntu, kFreeBSD/Debian and FreeBSD. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Maniphest Tasks: T1440 Differential Revision: https://secure.phabricator.com/D2913 --- bin/arc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/arc b/bin/arc index d90715e7..059a5cbe 100755 --- a/bin/arc +++ b/bin/arc @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # NOTE: This file is a wrapper script instead of a symlink so it will work in # the Git Bash environment in Windows.