From 9183ce18d904ed86aaf7013594acdcf5d2ed9445 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 18 Apr 2011 00:39:28 +0200 Subject: [PATCH] Use /usr/bin/env instead of /bin/env. --- bin/composer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/composer b/bin/composer index 8d63a0b7c..aae84edda 100755 --- a/bin/composer +++ b/bin/composer @@ -1,4 +1,4 @@ -#!/bin/env php +#!/usr/bin/env php addDownloader('git', new GitDownloader); $composer->addInstaller('library', new LibraryInstaller); $cmd = new InstallCommand(); -$cmd->install($composer); \ No newline at end of file +$cmd->install($composer);