reorder toolchain targets to help clarity (#95)

This commit is contained in:
c-parsons 2019-01-18 16:55:49 -05:00 committed by GitHub
parent c41adf3888
commit 5dccaa145e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -19,6 +19,15 @@ exit /b 1
visibility = ["//visibility:public"],
)
toolchain(
name = "cmd_toolchain",
exec_compatible_with = [
"@bazel_tools//platforms:windows",
],
toolchain = ":cmd",
toolchain_type = TOOLCHAIN_TYPE,
)
unittest_toolchain(
name = "bash",
failure_templ = """#!/bin/sh
@ -33,15 +42,6 @@ exit 1
visibility = ["//visibility:public"],
)
toolchain(
name = "cmd_toolchain",
exec_compatible_with = [
"@bazel_tools//platforms:windows",
],
toolchain = ":cmd",
toolchain_type = TOOLCHAIN_TYPE,
)
toolchain(
name = "bash_toolchain",
toolchain = ":bash",