From dev-return-7420-apmail-couchdb-dev-archive=couchdb.apache.org@couchdb.apache.org Tue Nov 24 06:57:05 2009 Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 87925 invoked from network); 24 Nov 2009 06:57:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 24 Nov 2009 06:57:05 -0000 Received: (qmail 72212 invoked by uid 500); 24 Nov 2009 06:57:04 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 72117 invoked by uid 500); 24 Nov 2009 06:57:03 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 72107 invoked by uid 99); 24 Nov 2009 06:57:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Nov 2009 06:57:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Nov 2009 06:57:01 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 0C6E7234C04C for ; Mon, 23 Nov 2009 22:56:40 -0800 (PST) Message-ID: <365218410.1259045800046.JavaMail.jira@brutus> Date: Tue, 24 Nov 2009 06:56:40 +0000 (UTC) From: "Mark Hammond (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Resolved: (COUCHDB-574) couchdb.bat: change to erlang dir failed if user profile is on a different drive (patch contained) In-Reply-To: <1567031543.1258929759608.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COUCHDB-574?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Hammond resolved COUCHDB-574. ---------------------------------- Resolution: Fixed Fix Version/s: 0.11 Assignee: Mark Hammond Thanks - fixed in r883606. > couchdb.bat: change to erlang dir failed if user profile is on a different drive (patch contained) > -------------------------------------------------------------------------------------------------- > > Key: COUCHDB-574 > URL: https://issues.apache.org/jira/browse/COUCHDB-574 > Project: CouchDB > Issue Type: Bug > Components: Infrastructure > Affects Versions: 0.10, 0.11 > Environment: WinXP, install package: setup-couchdb-0.10.0.exe and setup-couchdb-0.11.0b819947.exe > Reporter: Thomas Mohaupt > Assignee: Mark Hammond > Fix For: 0.11 > > Original Estimate: 0.02h > Remaining Estimate: 0.02h > > In couchdb.bat the first thing done is to change to the erlang directory > ------ couchdb.bat line 14 - 15 ---------- > setlocal > rem First change to the erlang bin directory > cd %~dp0 > ---------------------------- > this failed if the batch file is called by "start menu" and the start menu is on a different drive than the couchdb erlang dir. > ----------------------------- > e:\home\mot>"d:\Program Files\CouchDB\bin\couchdb.bat" > CouchDB 0.10.0 - prepare to relax... > 'erl.exe' is not recognized as an internal or external command, > operable program or batch file. > ----------------------------- > To fix this include "%~d0" after "setlocal" > ------ couchdb.bat line 14 - 15 ---------- > setlocal > rem First change to the erlang bin directory > %~d0 <<<< new - will change the drive > cd %~dp0 > ---------------------------- -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.