Fix url in uploadPpa

Change-Id: I982a046a01a02ec279672326585a99fc7b8b4ee2
diff --git a/src/com/mirantis/mk/Debian.groovy b/src/com/mirantis/mk/Debian.groovy
index 05ec4b1..9aec81c 100644
--- a/src/com/mirantis/mk/Debian.groovy
+++ b/src/com/mirantis/mk/Debian.groovy
@@ -191,7 +191,7 @@
           def orig_md5 = common.cutOrDie("md5sum ${name}", 0)
           def orig_size = common.cutOrDie("ls -l ${name}", 4)
 
-          def retval = sh(script: "wget --quiet -O orig-tmp https://launchpad.net/ubuntu/", returnStatus: true)
+          def retval = sh(script: "wget --quiet -O orig-tmp https://launchpad.net/ubuntu/+archive/primary/+files/${name}", returnStatus: true)
           if (retval == 0) {
              sh("mv orig-tmp ${name}")
              def new_sha1 = common.cutOrDie("sha1sum ${name}", 0)