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:
-rw-r--r--bockbuild/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bockbuild/environment.py b/bockbuild/environment.py
index f854d12..4d1f9ff 100644
--- a/bockbuild/environment.py
+++ b/bockbuild/environment.py
@@ -12,7 +12,7 @@ class EnvironmentItem:
self.values = values
def __str__(self):
- return self.joinchar.join(self.values)
+ return os.path.expandvars(self.joinchar.join(self.values))
class Environment: