Skip to content

Commit

Permalink
Revert "Project: Remove provisioning_profiles attributes from command…
Browse files Browse the repository at this point in the history
…-line tool rules (#1247)" (#1251)

This reverts commit 65c6602.
  • Loading branch information
mlw authored Dec 5, 2023
1 parent 1596990 commit 2cbf155
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/santabundleservice/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ macos_command_line_application(
],
infoplists = ["Info.plist"],
minimum_os_version = "11.0",
provisioning_profile = select({
"//:adhoc_build": None,
"//conditions:default": "//profiles:santa_dev",
}),
version = "//:version",
visibility = ["//:santa_package_group"],
deps = [":santabs_lib"],
Expand Down
4 changes: 4 additions & 0 deletions Source/santactl/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ macos_command_line_application(
],
infoplists = ["Info.plist"],
minimum_os_version = "11.0",
provisioning_profile = select({
"//:adhoc_build": None,
"//conditions:default": "//profiles:santa_dev",
}),
version = "//:version",
deps = [":santactl_lib"],
)
Expand Down
4 changes: 4 additions & 0 deletions Source/santametricservice/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ macos_command_line_application(
],
infoplists = ["Info.plist"],
minimum_os_version = "11.0",
provisioning_profile = select({
"//:adhoc_build": None,
"//conditions:default": "//profiles:santa_dev",
}),
version = "//:version",
visibility = ["//:santa_package_group"],
deps = [
Expand Down
4 changes: 4 additions & 0 deletions Source/santasyncservice/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ macos_command_line_application(
],
infoplists = ["Info.plist"],
minimum_os_version = "11.0",
provisioning_profile = select({
"//:adhoc_build": None,
"//conditions:default": "//profiles:santa_dev",
}),
version = "//:version",
visibility = ["//:santa_package_group"],
deps = [":santass_lib"],
Expand Down

0 comments on commit 2cbf155

Please sign in to comment.