1
0
Fork 0
mirror of https://github.com/bisq-network/bisq.git synced 2025-03-13 11:09:10 +01:00

Remove *nix scripts on Windows

Related to https://github.com/bisq-network/bisq/pull/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.
This commit is contained in:
Devin Bileck 2018-11-25 00:35:04 -08:00
parent feb6e64b75
commit 8cede5c25d
No known key found for this signature in database
GPG key ID: C86D829C2399D073

View file

@ -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')
}
}