1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-21 16:56:27 -05:00

Merge pull request #8 from v2fly/kslr-patch-1

fix bazel not set home
This commit is contained in:
Kslr 2020-06-02 05:45:12 +08:00 committed by GitHub
commit 46aa2c9e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,9 +41,7 @@ def _go_command(ctx):
if ctx.attr.arm:
envs+=["GOARM="+ctx.attr.arm]
switchToPwd="cd ${SPWD} && "
command = switchToPwd + " ".join(envs) + " " + command
command = " ".join(envs) + " " + command
ctx.actions.run_shell(
outputs = [output_file],