Skip to content

Commit

Permalink
fix: increaseVersion bug
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaSanchez committed Feb 28, 2018
1 parent 092c90e commit d3a74ff
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 d3a74ff

Please sign in to comment.