Skip to content

Commit 2d1b570

Browse files
fmeumcopybara-github
authored andcommitted
Bump version number in runfiles.bash init code
The version number wasn't updated in 839ce7f. Closes bazelbuild#17511. PiperOrigin-RevId: 510985230 Change-Id: Iff6006a17e4882e1225d5fc02d26d8c3f932f361
1 parent 963640a commit 2d1b570

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/bash/runfiles/runfiles.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@
6767
# up the library's runtime location, thus we have a chicken-and-egg problem.
6868
# Insert the following code snippet to the top of your main script:
6969
#
70-
# # --- begin runfiles.bash initialization v2 ---
71-
# # Copy-pasted from the Bazel Bash runfiles library v2.
70+
# # --- begin runfiles.bash initialization v3 ---
71+
# # Copy-pasted from the Bazel Bash runfiles library v3.
7272
# set -uo pipefail; set +e; f=bazel_tools/tools/bash/runfiles/runfiles.bash
7373
# source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \
7474
# source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null || \
7575
# source "$0.runfiles/$f" 2>/dev/null || \
7676
# source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \
7777
# source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \
7878
# { echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e
79-
# # --- end runfiles.bash initialization v2 ---
79+
# # --- end runfiles.bash initialization v3 ---
8080
#
8181
#
8282
# 3. Use rlocation to look up runfile paths.

0 commit comments

Comments
 (0)