Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 6B7D7429E33 for ; Wed, 28 Dec 2011 18:35:01 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id az9W8tmBp-TN for ; Wed, 28 Dec 2011 18:35:00 -0800 (PST) Received: from dmz-mailsec-scanner-8.mit.edu (DMZ-MAILSEC-SCANNER-8.MIT.EDU [18.7.68.37]) by olra.theworths.org (Postfix) with ESMTP id AAF6A429E29 for ; Wed, 28 Dec 2011 18:35:00 -0800 (PST) X-AuditID: 12074425-b7f4a6d0000008e0-a4-4efbd1d4594c Received: from mailhub-auth-2.mit.edu ( [18.7.62.36]) by dmz-mailsec-scanner-8.mit.edu (Symantec Messaging Gateway) with SMTP id 1C.31.02272.4D1DBFE4; Wed, 28 Dec 2011 21:35:00 -0500 (EST) Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103]) by mailhub-auth-2.mit.edu (8.13.8/8.9.2) with ESMTP id pBT2Z0un030249; Wed, 28 Dec 2011 21:35:00 -0500 Received: from drake.mit.edu (c-76-21-105-205.hsd1.ca.comcast.net [76.21.105.205]) (authenticated bits=0) (User authenticated as amdragon@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id pBT2YwIE025977 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NOT); Wed, 28 Dec 2011 21:34:59 -0500 (EST) Received: from amthrax by drake.mit.edu with local (Exim 4.77) (envelope-from ) id 1Rg5pZ-0003cc-RL; Wed, 28 Dec 2011 21:34:57 -0500 From: Austin Clements To: notmuch@notmuchmail.org Subject: [PATCH] test: Remove #! line from test-lib.sh Date: Wed, 28 Dec 2011 21:34:56 -0500 Message-Id: <1325126096-13885-1-git-send-email-amdragon@mit.edu> X-Mailer: git-send-email 1.7.7.3 X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFlrCIsWRmVeSWpSXmKPExsUixG6nonvl4m8/g5/rBS2u35zJ7MDo8WzV LeYAxigum5TUnMyy1CJ9uwSujHf/p7IV/GKpmNuk38D4i7mLkYNDQsBE4sErxi5GTiBTTOLC vfVsXYxcHEIC+xgltl68xALhbGCU2HPpLyuEc45JYtmFs4wQznxGiYYJ89hB+tkENCS27V8O NktEQFpi593ZrCArmAXUJP50qYCEhQXMJJovvmQBsVkEVCXebl/BAlLCK+Agcb6DG+IKBYlz q8+xT2DkXcDIsIpRNiW3Sjc3MTOnODVZtzg5MS8vtUjXQi83s0QvNaV0EyM4AFxUdzBOOKR0 iFGAg1GJh9fT8LefEGtiWXFl7iFGSQ4mJVFenvNAIb6k/JTKjMTijPii0pzU4kOMEhzMSiK8 tbuBcrwpiZVVqUX5MClpDhYlcV5NrXd+QgLpiSWp2ampBalFMFkZDg4lCV4mYKALCRalpqdW pGXmlCCkmTg4QYbzAA2XAqnhLS5IzC3OTIfIn2LU5Ti5dcNZRiGWvPy8VClxXkuQIgGQoozS PLg5sMh9xSgO9JYwrzRIFQ8w6uEmvQJawgS05Ny5XyBLShIRUlINjCIbXX7FZm6zm7jh+6Vt i1Yc8OiQybkl8XrlngP/yluvHtUWvj5Vak92rFvJP6VzJe1Hfm0o+rxthtihMKcgdz5WuSli l5x9Vitc14p69e2EwOWNgedaOd8+va2csvXV2m8/3hTmbH98x/DppY7XoR3HNEtjGu7waPzy snlmMOn+o11zNtRK7MpUYinOSDTUYi4qTgQAt/FlEbcCAAA= X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2011 02:35:01 -0000 It makes no sense to run test-lib.sh, so it makes no sense to give it an interpreter. This is particularly annoying for Emacs users who have executable-insert set, since the presence of the #! line will cause Emacs to mark test-lib.sh executable when saving it, which will in turn case the 'basic' test to fail. --- test/test-lib.sh | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/test/test-lib.sh b/test/test-lib.sh index 862095c..82767c0 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -1,4 +1,3 @@ -#!/usr/bin/env bash # # Copyright (c) 2005 Junio C Hamano # -- 1.7.7.3