This website requires JavaScript.
Explore
Help
Sign In
jasder
/
moby
Watch
0
Star
0
Fork
You've already forked moby
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
069fdc8a08
moby
/
hack
/
make
/
install-binary
9 lines
91 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Convert script shebangs from "#!/bin/bash" to "#!/usr/bin/env bash" This is especially important for distributions like NixOS where `/bin/bash` doesn't exist, or for MacOS users who've installed a newer version of Bash than the one that comes with their OS. Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
2017-02-14 03:01:54 +08:00
#!/usr/bin/env bash
Add `make install` task This installs docker and dockerd to `$DOCKER_MAKE_INSTALL_PREFIX/bin`, which defaults to `/usr/local/bin` Signed-off-by: Brian Goff <cpuguy83@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-05-24 09:44:43 +08:00
set -e
rm -rf "$DEST"
(
source "${MAKEDIR}/install-binary-daemon"
)