aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/package_commands.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2018-10-15 12:16:08 -0400
committerGitHub <noreply@github.com>2018-10-15 12:16:08 -0400
commit34eb1d04992f436558bce87ca78cfb072009d3c0 (patch)
treee8fcfbf60fe40722c1d0deaa50b22576bd084bc9 /python/servo/package_commands.py
parent2bc086762e53d3d0b91633474fb8a92fac0c355c (diff)
downloadservo-34eb1d04992f436558bce87ca78cfb072009d3c0.tar.gz
servo-34eb1d04992f436558bce87ca78cfb072009d3c0.zip
Don't strip final character of directory name for maven package.
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r--python/servo/package_commands.py2
1 files changed, 1 insertions, 1 deletions
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)