From b4b1bebb5c78385d84d95247f243ce0f7b447352 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sat, 18 Nov 2017 17:02:11 +0100 Subject: [PATCH] rename clone_and_build.sh to lazy.sh refs #35 --- docs/installation.rst | 6 +++--- clone_and_build.sh => lazy.sh | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename clone_and_build.sh => lazy.sh (100%) diff --git a/docs/installation.rst b/docs/installation.rst index c612feb..892a8e4 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -56,7 +56,7 @@ Otherwise, the examples in the :ref:`tutorial` may need to be adjusted. :: - curl 'https://raw.githubusercontent.com/zrepl/zrepl/master/clone_and_build.sh' | sh + curl 'https://raw.githubusercontent.com/zrepl/zrepl/master/lazy.sh' | sh You can also build in a Docker container if you want an isolated build environment or don't have a compatible Go version. @@ -67,9 +67,9 @@ You can also build in a Docker container if you want an isolated build environme sudo docker run -it --rm \ -v "${PWD}:/zrepl" \ --user "$(id -u):$(id -g)" \ - golang:latest bash -c 'export CLONEPATH=/go/src/github.com/zrepl; mkdir -p "$CLONEPATH" && ln -s /zrepl $CLONEPATH/zrepl && ${CLONEPATH}/zrepl/clone_and_build.sh' + golang:latest bash -c 'export CLONEPATH=/go/src/github.com/zrepl; mkdir -p "$CLONEPATH" && ln -s /zrepl $CLONEPATH/zrepl && ${CLONEPATH}/zrepl/lazy.sh' -.. literalinclude:: ../clone_and_build.sh +.. literalinclude:: ../lazy.sh :language: sh diff --git a/clone_and_build.sh b/lazy.sh similarity index 100% rename from clone_and_build.sh rename to lazy.sh