mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
85fa72c599
The 1.16 `io/fs` compatibility code was being built on 1.18 and 1.19. Drop it completely as 1.16 is long EOL, and additionally drop 1.17 as it has been EOL for a month and 1.18 is both the minimum Go supported by the 20.10 branch, as well as a very easy jump from 1.17. Signed-off-by: Bjorn Neergaard <bneergaard@mirantis.com>
9 lines
159 B
Bash
Executable file
9 lines
159 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ROOTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
cat > "${ROOTDIR}/go.mod" << EOF
|
|
module github.com/docker/docker
|
|
|
|
go 1.18
|
|
EOF
|