1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

OSX mktemp is different - hopfully this will now work on HP/UX >:}

Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@fosiki.com> (github: SvenDowideit)
Upstream-commit: 04d1e686398fff0784a47cb85c37db629d40f5b5
Component: engine
This commit is contained in:
Sven Dowideit
2014-03-31 11:05:21 +10:00
parent ee88186110
commit fc67adacc9

View File

@@ -66,7 +66,7 @@ Run the following commands to get it downloaded and set up:
.. code-block:: bash
# Get the docker client file
DIR=$(mktemp -d) && \
DIR=$(mktemp -d ${TMPDIR:-/tmp}/dockerdl.XXXXXXX) && \
curl -f -o $DIR/ld.tgz https://get.docker.io/builds/Darwin/x86_64/docker-latest.tgz && \
gunzip $DIR/ld.tgz && \
tar xvf $DIR/ld.tar -C $DIR/ && \