diff options
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 2 |
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) |