Skip to content

Commit

Permalink
fixes: Delete Changelog in simulation
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMitterer committed Feb 20, 2015
1 parent 01d4028 commit 7b9ee0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/Application.dart
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ class Application {

void writeChangeLog(final bool isSimulation) {

final File file = new File("CHANGELOG.md");
if(!isSimulation) {
final File file = new File("CHANGELOG.md");
if(file.existsSync()) { file.deleteSync(); }
}

Expand Down

0 comments on commit 7b9ee0a

Please sign in to comment.