aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/packages/BUILD
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2015-10-12 07:09:03 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-10-12 08:36:58 +0000
commit2b4979192035906f9d67013ec0f34614f5e96ede (patch)
tree7542a4395d28a93902edd8c727386beecafa67bb /scripts/packages/BUILD
parent40fd1f7cd42bd91887adf8f0f78dc883b8e2f510 (diff)
Pass a directory for find to look in for OS X
Fixes the illegal option error here: http://ci.bazel.io/job/Bazel/JAVA_VERSION=1.7,PLATFORM_NAME=darwin-x86_64/162/console -- MOS_MIGRATED_REVID=105189685
Diffstat (limited to 'scripts/packages/BUILD')
-rw-r--r--scripts/packages/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD
index ef9257c2a1..0e47b20b6c 100644
--- a/scripts/packages/BUILD
+++ b/scripts/packages/BUILD
@@ -141,7 +141,7 @@ genrule(
outs = [
"version.txt",
],
- cmd = "find -name stable-status.txt -exec cat '{}' ';' | grep EMBED_LABEL | cut -d ' ' -f 2- > $@\n",
+ cmd = "find . -name stable-status.txt -exec cat '{}' ';' | grep EMBED_LABEL | cut -d ' ' -f 2- > $@\n",
stamp = 1,
)