Skip to content

Commit

Permalink
Fix duplicates in manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
emaldona authored and cipherboy committed Sep 20, 2018
1 parent afecca6 commit e68ba5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_java.pl
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ sub build {
ensure_dir_exists($dist_dir);

if ($append) {
open(MYOUTFILE, ">$manifest_file"); #open for write, overwrite
} else {
open(MYOUTFILE, ">>$manifest_file"); #open for write, append
} else {
open(MYOUTFILE, ">$manifest_file"); #open for write, overwrite
}

#*** Print freeform text, semicolon required ***
Expand Down

0 comments on commit e68ba5d

Please sign in to comment.