mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Make hack/make.sh work on FreeBSD
Signed-off-by: Alexey Guskov <lexag@mail.ru>
This commit is contained in:
parent
628c396555
commit
9e00e34092
1 changed files with 6 additions and 1 deletions
|
@ -290,7 +290,12 @@ main() {
|
|||
|
||||
if [ "$(go env GOHOSTOS)" != 'windows' ]; then
|
||||
# Windows and symlinks don't get along well
|
||||
ln -sfT "$VERSION" bundles/latest
|
||||
|
||||
if [ "$(go env GOHOSTOS)" != 'freebsd' ]; then
|
||||
ln -sfT "$VERSION" bundles/latest
|
||||
else
|
||||
ln -sfh "$VERSION" bundles/latest
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue