Skip to content

Commit

Permalink
Use shorter workspace name.
Browse files Browse the repository at this point in the history
  • Loading branch information
EdSchouten committed Jan 1, 2019
1 parent 58e5423 commit 81305e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Expand Up @@ -30,7 +30,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
":arpc_protocol_library",
"@com_github_nuxinl_argdata//:argdata",
"@org_cloudabi_argdata//:argdata",
],
)

Expand Down
4 changes: 2 additions & 2 deletions WORKSPACE
@@ -1,9 +1,9 @@
workspace(name = "com_github_nuxinl_arpc")
workspace(name = "org_cloudabi_arpc")

load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

git_repository(
name = "com_github_nuxinl_argdata",
name = "org_cloudabi_argdata",
commit = "6299455171a28831876d078c59a6634de6f6700b",
remote = "https://github.com/NuxiNL/argdata.git",
)
Expand Down
4 changes: 2 additions & 2 deletions aprotoc.bzl
Expand Up @@ -9,6 +9,6 @@ def aprotoc(name, src):
name = name,
srcs = [src],
outs = [header_name],
cmd = "./$(location @com_github_nuxinl_arpc//scripts:aprotoc) < $(location %s) > $@" % src,
tools = ["@com_github_nuxinl_arpc//scripts:aprotoc"],
cmd = "./$(location @org_cloudabi_arpc//scripts:aprotoc) < $(location %s) > $@" % src,
tools = ["@org_cloudabi_arpc//scripts:aprotoc"],
)

0 comments on commit 81305e3

Please sign in to comment.