From a09ce313a0db8049a96a0d066659092c18c48058 Mon Sep 17 00:00:00 2001 From: Izzat Mukhanov Date: Fri, 18 Mar 2016 12:25:44 +0100 Subject: [PATCH] Fix deploy --- building-and-packaging/linux/create-deb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/building-and-packaging/linux/create-deb b/building-and-packaging/linux/create-deb index 8d8da5fb..57ac6367 100755 --- a/building-and-packaging/linux/create-deb +++ b/building-and-packaging/linux/create-deb @@ -49,9 +49,11 @@ def getVersion(): VERSION = getVersion() ARCH = platform.machine() +os.chdir(HERE) # Generate and copy files neccessary to build libpointing subprocess.call("python prepare", stdout=subprocess.PIPE, shell=True) DIST = os.path.relpath(os.path.join(HERE, "libpointing-dist"), os.getcwd()) +print DIST os.chdir(DIST) subprocess.call("make") os.chdir("..")