mirror of
https://github.com/servo/servo.git
synced 2025-06-30 12:03:38 +01:00
Don't strip final character of directory name for maven package.
This commit is contained in:
parent
2bc086762e
commit
34eb1d0499
1 changed files with 1 additions and 1 deletions
|
@ -552,7 +552,7 @@ class PackageCommands(CommandBase):
|
||||||
base_dir = os.path.join(directory, artifact_dir)
|
base_dir = os.path.join(directory, artifact_dir)
|
||||||
if not os.path.isdir(base_dir):
|
if not os.path.isdir(base_dir):
|
||||||
continue
|
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.
|
# Upload all of the files inside the subdirectory.
|
||||||
for f in os.listdir(base_dir):
|
for f in os.listdir(base_dir):
|
||||||
file_upload_key = "{}/{}".format(package_upload_base, f)
|
file_upload_key = "{}/{}".format(package_upload_base, f)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue