Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Christoforides <alexis@thenull.net>2017-10-06 20:32:34 +0300
committerAlexis Christoforides <alexis@thenull.net>2017-10-06 20:32:34 +0300
commit0d42e13de25cbd03db00e07c4e7ffb3841926865 (patch)
treed436310f6742e77a4667bfadf999f80dafba1643 /bockbuild
parentd7de09ce59af7b172e6533eafdafb01b131f6944 (diff)
Fix last commit
Diffstat (limited to 'bockbuild')
-rw-r--r--bockbuild/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bockbuild/package.py b/bockbuild/package.py
index a684545..f719d17 100644
--- a/bockbuild/package.py
+++ b/bockbuild/package.py
@@ -554,7 +554,7 @@ class Package:
warn(
'Different file exists in package already: ''%s''' % relpath )
files.append(relpath)
- if os.path.islink(path):
+ if not os.path.islink(path):
size = size + os.path.getsize(path)
files.sort()