Skip to content

Commit

Permalink
Remove *nix scripts on Windows
Browse files Browse the repository at this point in the history
Related to #1959 which
removed .bat files on a non-Windows OS to prevent a cluttered root
directory, this change will delete *nix scripts on a Windows OS.
  • Loading branch information
devinbileck committed Nov 25, 2018
1 parent feb6e64 commit 8cede5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ configure([project(':desktop'),

if (osdetector.os != 'windows')
delete fileTree(dir: rootProject.projectDir, include: 'bisq-*.bat')
else
delete fileTree(dir: rootProject.projectDir, include: 'bisq-*', exclude: '*.bat')
}
}

Expand Down

0 comments on commit 8cede5c

Please sign in to comment.