summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil')
-rwxr-xr-xrbutil/rbutilqt/deploy-release.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/deploy-release.py b/rbutil/rbutilqt/deploy-release.py
index dab0e8a7dc..4b3b91576a 100755
--- a/rbutil/rbutilqt/deploy-release.py
+++ b/rbutil/rbutilqt/deploy-release.py
@@ -42,12 +42,24 @@ import zipfile
42import shutil 42import shutil
43import subprocess 43import subprocess
44import getopt 44import getopt
45import which
46import time 45import time
47import hashlib 46import hashlib
48import pysvn
49import tempfile 47import tempfile
50 48
49# modules that are not part of python itself.
50try:
51 import pysvn
52except ImportError:
53 print "Fatal: This script requires the pysvn package to run."
54 print " See http://pysvn.tigris.org/."
55 sys.exit(-5)
56try:
57 import which
58except ImportError:
59 print "Fatal: This script requires the which package to run."
60 print " See http://code.google.com/p/which/."
61 sys.exit(-5)
62
51# == Global stuff == 63# == Global stuff ==
52# Windows nees some special treatment. Differentiate between program name 64# Windows nees some special treatment. Differentiate between program name
53# and executable filename. 65# and executable filename.