aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/package_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r--python/servo/package_commands.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py
index 62ae60f5fa6..ab8cbacb2cd 100644
--- a/python/servo/package_commands.py
+++ b/python/servo/package_commands.py
@@ -160,7 +160,7 @@ class PackageCommands(CommandBase):
else:
raise Exception("TODO what should this be?")
- flavor_name = "Main"
+ flavor_name = "Basic"
if flavor is not None:
flavor_name = flavor.title()
@@ -176,10 +176,7 @@ class PackageCommands(CommandBase):
variant = ":assemble" + flavor_name + arch_string + build_type_string
apk_task_name = ":servoapp" + variant
aar_task_name = ":servoview" + variant
- maven_task_name = ":servoview:uploadArchive"
argv = ["./gradlew", "--no-daemon", apk_task_name, aar_task_name]
- if maven:
- argv.append(maven_task_name)
try:
with cd(path.join("support", "android", "apk")):
subprocess.check_call(argv, env=env)