From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20909 invoked by alias); 3 Jun 2018 21:56:12 -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: List-Unsubscribe: X-Seq: 42927 Received: (qmail 19256 invoked by uid 1010); 3 Jun 2018 21:56:12 -0000 X-Qmail-Scanner-Diagnostics: from out1-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(66.111.4.25):SA:0(-2.6/5.0):. Processed in 0.463389 secs); 03 Jun 2018 21:56:12 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) 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, SPF_HELO_PASS,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: d.s@daniel.shahaf.name X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= daniel.shahaf.name; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=Jz8fNc LUYgiE195Z6+8lZ6I+2vyWEkcJHHcpm/pHymY=; b=j6pz2YCvQLqN5lxcmihQa9 uc5bdillKkiIukHSy3GoUSuq+qsNWJIAvMv0EAyyXhO4aomq8MjaZRoRsIxbjQST E+HOoB922CMnMMcVUdgjjH2+UIKaFexECal9aj/vhWQqxuVkPMrdVWyKZIGGu1/T 76cuWlErfL5+QJX7waZBgLHHcwownhy9tRQZqwdOl5LKaVpDsttwAgMocWJSu9LN npdWFnofuJ7xO5Y5Y2AnQuQaf4g4l6hJJx+Pdnul3e2phMoVeOpU58nqZL9EbGx+ 0P8vnLeH9F2WZ5WSCqFkMtJYW5Of2xq0mKcOwIkaab8MqT4hhgnKvcKwgj5e90FA == DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=Jz8fNc LUYgiE195Z6+8lZ6I+2vyWEkcJHHcpm/pHymY=; b=GUnbj7wGX87jWhdJanmOHI ww2qjlCwePO9eaIoQ7ACIJOcCbWIkNIh13nk0QW+og6JBnMylgkYM+/ZWIobiMsU WsqZdUu7KvfYkVbfIxgGPLOdThps4G7C2i2MdklmEXRH3SWCpKdEWSPSHW7PFbrC Vpsl0gc3gR+HArltgrTjr8fbofOvL9gfnYmmElRivOAuoA9DHTBXpeK9sUDg8UsZ FNJqT7DiMtzIpUbDJUl8d6eFny0SdbbjbDCksena5s8k+kQ0hmDq6odvqI9Y2Y65 CuR8kO0s86/961zWT/pHwtUev41H9gBeHGqmikpUgv01MouOunM8ZmID+Ry46o8Q == X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Sender: Date: Sun, 3 Jun 2018 21:46:08 +0000 From: Daniel Shahaf To: zsh-workers@zsh.org Subject: Re: [PATCH 1/1] Squashed commit of the following: Message-ID: <20180603214608.ig6agow2jnqi3kbd@tarpaulin.shahaf.local2> References: <20180526161403.4860-1-doron.behar@gmail.com> <20180526161403.4860-2-doron.behar@gmail.com> <5942.1527504539@thecus> <20180529153821.nmwa5yojlusioxti@NUC.doronbehar.com> <13666.1527631249@thecus> <20180530124707.xp6loetwnplkypk2@NUC.doronbehar.com> <16604.1527694987@thecus> <20180601071850.4z3h6cvkuvva3nby@NUC.doronbehar.com> <20180601133048.m7crvdzodzntxcsq@NUC.doronbehar.com> <31972.1527893117@thecus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <31972.1527893117@thecus> User-Agent: NeoMutt/20170113 (1.7.2) Oliver Kiddle wrote on Sat, Jun 02, 2018 at 00:45:17 +0200: > Doron Behar wrote: > > print user_config_path=$user_config_path > ${cache_dir}/luarocks_configs_paths > > print system_config_path=$system_config_path >> ${cache_dir}/luarocks_configs_paths > > You might need to quote the values with ${(qq)user_config_path} in case > they have spaces in their values. … and if they can have backslashes, pass -r to print so they round-trip correctly. (Or just use 'typeset -p')