Skip to content

Commit 141ba2e

Browse files
committed
Bazel: rename workspace to codeql
1 parent 03ebf8b commit 141ba2e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

WORKSPACE.bazel

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Please notice that any bazel targets and definitions in this repository are currently experimental
22
# and for internal use only.
33

4-
workspace(name = "ql")
4+
workspace(name = "codeql")
55

6-
load("//misc/bazel:workspace.bzl", "ql_workspace")
6+
load("//misc/bazel:workspace.bzl", "codeql_workspace")
77

8-
ql_workspace()
8+
codeql_workspace()
99

10-
load("//misc/bazel:workspace_deps.bzl", "ql_workspace_deps")
10+
load("//misc/bazel:workspace_deps.bzl", "codeql_workspace_deps")
1111

12-
ql_workspace_deps()
12+
codeql_workspace_deps()

misc/bazel/workspace.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
22
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
33

4-
def ql_workspace():
4+
def codeql_workspace():
55
maybe(
66
repo_rule = http_archive,
77
name = "rules_pkg",

misc/bazel/workspace_deps.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
22

3-
def ql_workspace_deps():
3+
def codeql_workspace_deps():
44
rules_pkg_dependencies()

0 commit comments

Comments
 (0)