This website requires JavaScript.
Explore
Help
Sign in
kotovalexarian-likes-github
/
moby--moby
Watch
1
Star
0
Fork
You've already forked moby--moby
0
mirror of
https://github.com/moby/moby.git
synced
2022-11-09 12:21:53 -05:00
Code
Releases
Activity
a40595d498
moby--moby
/
hack
/
make
/
install-binary
9 lines
91 B
Text
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-13 14:01:54 -05: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-23 21:44:43 -04:00
set -e
rm -rf "$DEST"
(
source "${MAKEDIR}/install-binary-daemon"
)
Copy permalink