Skip to content

Commit 5330526

Browse files
fjlenriquefynn
authored andcommitted
build: fix makefile HOME reference (ethereum#20562)
1 parent 3196293 commit 5330526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/deb/ethereum/deb.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ override_dh_auto_build:
1919

2020
# We can't download external go modules within Launchpad, so we're shipping the
2121
# entire dependency source cache with go-ethereum.
22-
(mkdir -p $HOME/go/pkg/mod && mv .mod/* $HOME/go/pkg/mod)
22+
(mkdir -p $(HOME)/go/pkg/mod && mv .mod/* $(HOME)/go/pkg/mod)
2323

2424
# A fresh Go was built, all dependency downloads faked, hope build works now
2525
../.go/bin/go run build/ci.go install -git-commit={{.Env.Commit}} -git-branch={{.Env.Branch}} -git-tag={{.Env.Tag}} -buildnum={{.Env.Buildnum}} -pull-request={{.Env.IsPullRequest}}

0 commit comments

Comments
 (0)