Commit 06130e8f authored by Romain Courteaud's avatar Romain Courteaud

Revert "Prevent the recipe to get stuck without manual intervention"

This reverts commit 80cebb04.
parent 80cebb04
...@@ -245,8 +245,8 @@ stop-on-error = true ...@@ -245,8 +245,8 @@ stop-on-error = true
repository = http://git.erp5.org/repos/erp5.git repository = http://git.erp5.org/repos/erp5.git
branch = master branch = master
revision = revision =
command = ((${git:location}/bin/git clone --quiet -b ${:branch} ${:repository} ${:location}) || (rm -fr ${:location} ; exit 1)) && if [ -n ${:revision} ]; then cd ${:location} && ((${git:location}/bin/git reset --quiet --hard ${:revision}) || (rm -fr ${:location} ; exit 1)) ; fi command = ${git:location}/bin/git clone --quiet -b ${:branch} ${:repository} ${:location} && if [ -n ${:revision} ]; then cd ${:location} && ${git:location}/bin/git reset --quiet --hard ${:revision} ; fi
update-command = cd ${:location} && ((${git:location}/bin/git pull --quiet) || (rm -fr ${:location} ; exit 1)) && if [ -n ${:revision} ]; then cd ${:location} && ((${git:location}/bin/git reset --quiet --hard ${:revision} || (rm -fr ${:location} ; exit 1)) ; fi update-command = cd ${:location} && ${git:location}/bin/git pull --quiet && if [ -n ${:revision} ]; then cd ${:location} && ${git:location}/bin/git reset --quiet --hard ${:revision} ; fi
[beteireflow-repository] [beteireflow-repository]
<= erp5 <= erp5
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment