diff --git a/builders/builder.py b/builders/builder.py index d2af1ad..047ddb8 100644 --- a/builders/builder.py +++ b/builders/builder.py @@ -379,7 +379,7 @@ class Builder(object): self._print('Copying OpenLP font...') source = os.path.join(self.source_path, 'core', 'ui', 'fonts', 'OpenLP.ttf') dest_dir = os.path.join(self.dist_path, 'core', 'ui', 'fonts') - dest = os.path.join(self.dest_dir, 'OpenLP.ttf') + dest = os.path.join(dest_dir, 'OpenLP.ttf') os.makedirs(dest_dir) copy(source, dest)