mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
fix(go)
This commit is contained in:
parent
f78ccd3da2
commit
d36513a06b
1 changed files with 5 additions and 1 deletions
|
@ -34,7 +34,11 @@ build:
|
|||
- rm *.{bash,bat,rc} Make.dist
|
||||
- run: find . -mindepth 1 -delete
|
||||
working-directory: ${{ prefix }}
|
||||
- run: cp -a api bin doc lib misc pkg src test go.env "{{prefix}}"
|
||||
- run: |
|
||||
cp -a api bin doc lib misc pkg src test "{{prefix}}"
|
||||
if test -f go.env; then
|
||||
cp go.env "{{prefix}}"
|
||||
fi
|
||||
working-directory: $SRCROOT
|
||||
env:
|
||||
# `make.bash` complains about unset GOCACHE and HOME otherwise
|
||||
|
|
Loading…
Reference in a new issue