From 0257d38fa572884b2ced28ca3ebd0803e8f26d68 Mon Sep 17 00:00:00 2001 From: David Ostrovsky <david@ostrovsky.org> Date: Fri, 11 Oct 2019 19:29:03 +0200 Subject: [PATCH] Bazel: Fix update instruction for license file In recent Bazel versions, bazel-genfiles directory is replaced with bazel-bin directory. Adapt the instruction for updating the license file correspondingly. Change-Id: I07bf1d9c13e25b8befe8c16ddd708f6c00b1ed70 --- Documentation/check_licenses_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/check_licenses_test.sh b/Documentation/check_licenses_test.sh index a65a827115..52e27f22a3 100755 --- a/Documentation/check_licenses_test.sh +++ b/Documentation/check_licenses_test.sh @@ -8,7 +8,7 @@ for f in js_licenses licenses ; do echo "FAIL: ${f}.txt out of date" echo "to fix: " echo "" - echo " cp bazel-genfiles/Documentation/${f}.gen.txt Documentation/${f}.txt" + echo " cp bazel-bin/Documentation/${f}.gen.txt Documentation/${f}.txt" echo "" exit 1 fi