Skip to content

Commit 3408278

Browse files
authored
Remove version flag from pm_tool.gni (flutter#31069)
This flag is deprecated and no longer used.
1 parent 4c63ae3 commit 3408278

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

tools/fuchsia/gn-sdk/pm_tool.gni

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import("config/config.gni")
99
# Parameters
1010
# package_name - defaults to target_name
1111
# archive_manifest - required
12-
# version [optional]
13-
# The package version. Defaults to 0.
1412
# command - the packaging step to perform valid steps are build, archive
1513
#
1614
# Forwarded parameters
@@ -45,11 +43,6 @@ template("fuchsia_pm_tool") {
4543
package_name = invoker.package_name
4644
}
4745

48-
version = "0"
49-
if (defined(invoker.version)) {
50-
version = invoker.version
51-
}
52-
5346
# tool path
5447
_pm_tool_path = "${fuchsia_tool_dir}/pm"
5548
script = "//build/gn_run_binary.py"
@@ -89,8 +82,6 @@ template("fuchsia_pm_tool") {
8982
rebase_path(archive_manifest, root_build_dir),
9083
"-n",
9184
package_name,
92-
"-version",
93-
version,
9485
]
9586
if (command == "build") {
9687
args += [

0 commit comments

Comments
 (0)