Skip to content
Snippets Groups Projects
Commit 48e8e073 authored by nimrod's avatar nimrod
Browse files

Cleaner Golang variables.

parent 0ff2dca0
Branches
Tags
No related merge requests found
...@@ -3,7 +3,8 @@ DESTDIR ?= .local ...@@ -3,7 +3,8 @@ DESTDIR ?= .local
tempdir != mktemp -d tempdir != mktemp -d
os != uname -s | awk '{print tolower($$0)}' os != uname -s | awk '{print tolower($$0)}'
arch != uname -m arch != uname -m
goarch != eval $$(go env) && echo "$$GOARCH" goos != go env GOOS
goarch != go env GOARCH
ssh_configs != find ".ssh/config.d/" -type f \! -name '.*' ssh_configs != find ".ssh/config.d/" -type f \! -name '.*'
curl = curl --location --silent --fail curl = curl --location --silent --fail
download = $(curl) --output $@ download = $(curl) --output $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment