From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16008 invoked by alias); 2 Jan 2014 18:50:34 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32215 Received: (qmail 10323 invoked from network); 2 Jan 2014 18:50:28 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=L0ssJ32xiulZgdkCXuElMTXD8ArSNvst0FHM/ka3C98=; b=SDRgnR2auwP9hAlybhvCor8R4NP17zaknqccdkPohReKx1NXekjKt3U4/w3bOwCHcr HeHX+E5W8VH2W68XJRDBuft/c3vx8r1ns9qeW/Nk1dP3tctwiskwRuxbMxiXW1CPjUpd 80VXwsbHKo2RDdVK+fW0asKV4gDqQR2WWSvdXFm7BKlRWAd9KxV+nLTN5TuH8qBdyMXs FXNvqynI9Xc7a/WHD+sxQOm8pdlH/cIqeUsuYYrLLIzdrbL77dDlZ1mQhz5VPj1nBHpw gSF9gBq9eEjc1+jkl/s8y5DOsXeIhECIGWmpKKcakNcZngrLOhF9yv3owztKnmbnOC66 SALw== X-Gm-Message-State: ALoCoQkKE0vcUxDzkSc76jPzsJWVt8HrYb1bH7fCakn41MVHOLjWZW6/B5fnHTAo7KJQvmLUpzn3 X-Received: by 10.180.76.103 with SMTP id j7mr33634206wiw.58.1388688625927; Thu, 02 Jan 2014 10:50:25 -0800 (PST) X-ProxyUser-IP: 86.6.157.246 Date: Thu, 2 Jan 2014 18:50:23 +0000 From: Peter Stephenson To: zsh-workers@zsh.org Subject: Re: env -i /usr/local/bin/zsh infinite parse error Message-ID: <20140102185023.44ed7586@pws-pc.ntlworld.com> In-Reply-To: References: <131228111326.ZM26752@torch.brasslantern.com> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.7; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 28 Dec 2013 23:26:39 -0800 Darren Cheng wrote: > I did a fresh install of rvm without any ruby versions installed and that > command worked fine. > I installed ruby-2.0.0-p353 and the error came back. > > Is this an issue I should take up with rvm? Possibly; it depends what the error is actually coming from. Is that rvm script supposed to be zsh-specific? If not, it may be an incompatibility with sh syntax. You could try [[ -s "$HOME/.rvm/scripts/rvm" ]] && emulate sh -c 'source "$HOME/.rvm/scripts/rvm"' --- but unless you know that's the problem that's not going to do any good, and if that *is* the problem and this doesn't fix it we'll need to know more about the context of the error. pws