From 31e89ca6d0ef70d59fc063a9a6a5af48186ec6d4 Mon Sep 17 00:00:00 2001 From: xmo-odoo Date: Fri, 16 May 2014 19:01:09 +0200 Subject: [PATCH] [FIX] Turns out process substitution is not POSIX A pipe does not work because the script asks questions, and required parameters would miss the point. --- doc/git.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/git.rst b/doc/git.rst index 1425689238e..cde8bd25e99 100644 --- a/doc/git.rst +++ b/doc/git.rst @@ -7,7 +7,8 @@ Initializing a working copy Use the easy-setup shell script:: - sh <( curl https://raw.githubusercontent.com/odoo/odoo/master/checkout.sh ) + curl -O https://raw.githubusercontent.com/odoo/odoo/master/checkout.sh + sh checkout.sh it will will ask a few questions and create a local copy.