summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xutils/common/deploy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/common/deploy.py b/utils/common/deploy.py
index 02323888d5..39911e82c4 100755
--- a/utils/common/deploy.py
+++ b/utils/common/deploy.py
@@ -44,6 +44,7 @@ import time
import hashlib
import tempfile
import gitscraper
+from datetime import datetime
# modules that are not part of python itself.
cpus = 1
@@ -584,7 +585,7 @@ def deploy():
else:
# figure version from sources. Need to take path to project file into account.
versionfile = re.subn('[\w\.]+$', "version.h", proj)[0]
- ver = findversion(versionfile) + "-dev"
+ ver = findversion(versionfile) + "-dev" + datetime.now().strftime('%Y%m%d%H%M%S')
# append buildid if any.
if buildid != None:
ver += "-" + buildid