Install cuttlefish-common from github.
- Fix users can't install cuttlefish-common from 'apt-get'.
Bug: 145094322
Test: acloud-dev setup --host --force
Change-Id: I4be6248cc4c6ad690c244c2b9e858cc17f30a17b
diff --git a/setup/setup.py b/setup/setup.py
index 36b6ffd..39513dc 100644
--- a/setup/setup.py
+++ b/setup/setup.py
@@ -48,6 +48,7 @@
# 2.Init all subtasks in queue and traverse them.
host_base_runner = host_setup_runner.HostBasePkgInstaller()
host_avd_runner = host_setup_runner.AvdPkgInstaller()
+ host_cf_common_runner = host_setup_runner.CuttlefishCommonPkgInstaller()
host_env_runner = host_setup_runner.CuttlefishHostSetup()
gcp_runner = gcp_setup_runner.GcpTaskRunner(args.config_file)
task_queue = []
@@ -55,6 +56,7 @@
if args.host:
task_queue.append(host_base_runner)
task_queue.append(host_avd_runner)
+ task_queue.append(host_cf_common_runner)
task_queue.append(host_env_runner)
# We should do these setup tasks if specified or if no args were used.
if args.host_base or (not args.host and not args.gcp_init):