[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Problem with BBWin 0.12 module
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Problem with BBWin 0.12 module
- From: Richard Finegold <goldfndr (at) gmail.com>
- Date: Thu, 21 Jan 2010 16:40:03 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=oDCcc+Vja8xjKxfdar9NnozDrOOkv8xWp+h1Dw3BLjE=; b=G0kYWsruQzCeVPU+mMe9Ze8Vhlnict6y77+79bUzXh2EAsrSPSY36bKTb1Tz+wbN+C kSO6qg9VwWpOEBeMIQzkMTsZgYkK2izW8yQOD2potADH4yW+3DKKW8c5Bp8aCVwINEjH D4tQKivu5jf4v1T/4s8UQe4fX3OUp4VOhkYIE=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=UFN89UMKWfOHFxM+7LQYl3TnaDOer2+apqoP38cUK9PHgYIK5Mf115TfiUr/EbZujc fIXTFTb2SMpKm8h1iF81zpx4bkD1EnL0GVTu2pZX8uIXT/DQEHR+zzmkYbJo/nkQ2cdO v8Kkbia2TCBW4PxvcW2ZZEfwxI/KXBWgQMS9s=
- References: <2870073.390071263984609554.JavaMail.www (at) wsfrf1112> <20100120110705.319470 (at) gmx.net>
On Wed, Jan 20, 2010 at 03:07, Malcolm Hunter <malcolm.hunter (at) gmx.co.uk> wrote:
> <externals>
> <load name="nida" value="c:\monitoring\cygwin\bin\sh.exe "C:\Program Files\BBWin\ext\nida.nocr" timer="90s"/>
> </externals>
> The problem is the quotes around the script name - the quote before C:\Program Files closes the string. Try using the shortname:
>
> value="c:\monitoring\cygwin\bin\sh.exe C:\PROGRA~1\BBWin\ext\nida.nocr"
>
> Malcolm
Alternatively, since bbwin runs externals from BBWin\bin, you could
use a relative path (works here):
value="c:\monitoring\cygwin\bin\sh.exe ..\ext\nida.nocr"
(You can similarly set the logpath relative, e.g. value="..\logs\BBWin.log")