Skip to content

Commit

Permalink
Merge pull request #72 from SysBioChalmers/devel
Browse files Browse the repository at this point in the history
fix: increaseVersion bug
  • Loading branch information
BenjaSanchez authored Feb 28, 2018
2 parents bbc5a42 + d3a74ff commit 1b98ae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ComplementaryScripts/increaseVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function increaseVersion(version)
fid = fopen('../history.md','r');
history = fscanf(fid,'%s');
fclose(fid);
if contains(history,['yeast' version ':'])
if ~contains(history,['yeast' version ':'])
error('ERROR: update history.md first')
end

Expand Down

0 comments on commit 1b98ae6

Please sign in to comment.