diff options
author | Mukilan Thiyagarajan <mukilan@igalia.com> | 2023-10-28 12:40:28 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-28 07:10:28 +0000 |
commit | 6dd359193f3f2b71c590000b3ea3d86a878ee8e4 (patch) | |
tree | eb29ddece5d232ca970ef1e0623938d2607b5b11 /python/servo/package_commands.py | |
parent | a6ceca6d9f7f4ce483d1fa7d76a96a921ddc0548 (diff) | |
download | servo-6dd359193f3f2b71c590000b3ea3d86a878ee8e4.tar.gz servo-6dd359193f3f2b71c590000b3ea3d86a878ee8e4.zip |
Fix upload-nightly to use correct path (#30632)
Nightly builds now use production profile and thus will be
available under target/production
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index e9e5465ec0a..bc93f7e4200 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -47,22 +47,22 @@ sys.path.append(path.join(path.dirname(__file__), "..", "..", PACKAGES = { 'android': [ - 'android/armv7-linux-androideabi/release/servoapp.apk', - 'android/armv7-linux-androideabi/release/servoview.aar', + 'android/armv7-linux-androideabi/production/servoapp.apk', + 'android/armv7-linux-androideabi/production/servoview.aar', ], 'linux': [ - 'release/servo-tech-demo.tar.gz', + 'production/servo-tech-demo.tar.gz', ], 'mac': [ - 'release/servo-tech-demo.dmg', + 'production/servo-tech-demo.dmg', ], 'maven': [ 'android/gradle/servoview/maven/org/mozilla/servoview/servoview-armv7/', 'android/gradle/servoview/maven/org/mozilla/servoview/servoview-x86/', ], 'windows-msvc': [ - r'release\msi\Servo.exe', - r'release\msi\Servo.zip', + r'production\msi\Servo.exe', + r'production\msi\Servo.zip', ], } |