From 34eb1d04992f436558bce87ca78cfb072009d3c0 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 15 Oct 2018 12:16:08 -0400 Subject: Don't strip final character of directory name for maven package. --- python/servo/package_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/servo/package_commands.py') diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index fa8abc52373..94d7e9a4a6e 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -552,7 +552,7 @@ class PackageCommands(CommandBase): base_dir = os.path.join(directory, artifact_dir) if not os.path.isdir(base_dir): continue - package_upload_base = "{}/{}".format(dest_key_base, artifact_dir[:-1]) + package_upload_base = "{}/{}".format(dest_key_base, artifact_dir) # Upload all of the files inside the subdirectory. for f in os.listdir(base_dir): file_upload_key = "{}/{}".format(package_upload_base, f) -- cgit v1.2.3