Makefile `go version` 和 `read` 命令

问题描述 投票:0回答:1

我想提取并验证Makefile中的go版本。

这在 shell 中有效:

% go version | read _ _ version _ && echo "A $version Z"
A go1.21.1 Z

但在 Makefile 中不起作用

check-golang-version:
    go version | read _ _ version _ && echo "A $$version Z"

结果:

% make check-golang-version
go version | read _ _ version _ && echo "A $version Z"
A  Z

最终我想要这样的检查:

check-golang-version:
    go version | read _ _ version _ && test "$$version" = "go1.21.1" || $(error "wrong go version: $$version")
go makefile
1个回答
0
投票

默认情况下,

make
使用
/bin/sh
作为外壳(请参阅5.3.2选择外壳)。

而且很可能当你在 shell 中执行命令时,shell 是

zsh
zsh
管道的行为与大多数其他 shell 不同。有关示例,请参阅https://riptutorial.com/zsh/example/19869/pipes-and-subshells

我建议使用

go env GOVERSION
获取 go 的版本并将其分配给 Makefile 变量:

version = $(shell go env GOVERSION)

check-golang-version:
ifneq ($(version), go1.21.1)
    $(error wrong go version: $(version))
endif
© www.soinside.com 2019 - 2024. All rights reserved.