Skip to content

Commit

Permalink
Fix a few issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdln committed Jun 10, 2010
1 parent 3392922 commit 47e3915
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions flashbake/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ def commit(control_config, hot_files, quiet_mins):

status_output = git_obj.status(control_file)

# needed for git >= 1.7.0.4
if status_output.find('Untracked files') > 0:
hot_files.putneedsadd(control_file)
continue
if status_output.startswith('error'):
# needed for git < 1.7.0.4
if status_output.find('did not match') > 0:
hot_files.putneedsadd(control_file)
logging.debug('%s exists but is unknown by git.' % control_file)
Expand Down
2 changes: 1 addition & 1 deletion flashbake/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@



VERSION = '0.26'
VERSION = '0.26.1'
pattern = '.flashbake'

def main():
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


setup(name='flashbake',
version='0.26',
version='0.26.1',
author="Thomas Gideon",
author_email="[email protected]",
url="http://thecommandline.net",
Expand All @@ -19,5 +19,6 @@
entry_points={
'console_scripts': [ 'flashbake = flashbake.console:main',
'flashbakeall = flashbake.console:multiple_projects' ]
}
},
package_data ={'flashbake':['*.scpt',]},
)

0 comments on commit 47e3915

Please sign in to comment.