This commit is contained in:
Jacob Heider 2023-09-06 13:57:21 -04:00
parent f78ccd3da2
commit d36513a06b
No known key found for this signature in database
GPG key ID: A98011B5713535BF

View file

@ -34,7 +34,11 @@ build:
- rm *.{bash,bat,rc} Make.dist - rm *.{bash,bat,rc} Make.dist
- run: find . -mindepth 1 -delete - run: find . -mindepth 1 -delete
working-directory: ${{ prefix }} 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 working-directory: $SRCROOT
env: env:
# `make.bash` complains about unset GOCACHE and HOME otherwise # `make.bash` complains about unset GOCACHE and HOME otherwise