Skip to content

Commit

Permalink
Code review: 227640043: Fix for prep_dist.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Dec 31, 2015
1 parent 7d18a4d commit fb0b202
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/dpkg/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ python-plaso (1.2.1-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline <[email protected]> Sun, 26 Apr 2015 16:18:54 +0200
-- Log2Timeline <[email protected]> Mon, 27 Apr 2015 06:27:27 +0200
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__version__ = '1.2.1'

VERSION_DEV = True
VERSION_DATE = '20150426'
VERSION_DATE = '20150427'


def GetVersion():
Expand Down
1 change: 1 addition & 0 deletions plaso/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ def CheckTestDependencies(latest_version_check=False):
if not CheckDependencies(latest_version_check):
return False

print u'Checking availability and versions of plaso test dependencies.'
for values in PYTHON_TEST_DEPENDENCIES:
if not CheckPythonModule(
values[0], values[1], values[2], maximum_version=values[3]):
Expand Down
2 changes: 1 addition & 1 deletion utils/prep_dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SED_SCRIPT="

sed -i"~" -e "${SED_SCRIPT}" plaso/frontend/presets.py

sed -i"~" '/hachoir_/,/^$/d' utils/check_dependencies.py
sed -i"~" '/hachoir_/,/^$/d' plaso/dependencies.py

exit ${EXIT_SUCCESS};

0 comments on commit fb0b202

Please sign in to comment.