Skip to content

Commit

Permalink
Removed file extensions
Browse files Browse the repository at this point in the history
LICENSE.txt -> LICENSE
VERSION.txt -> VERSION
README.markdown -> README (only during build)
  • Loading branch information
mkalb committed Oct 11, 2012
1 parent 7a34e20 commit f2b3a61
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
File renamed without changes.
8 changes: 5 additions & 3 deletions build.gradle
Expand Up @@ -37,7 +37,7 @@ ext {
env = System.getenv() // read environment variables, including variables passed by jenking continuous integration server
versionInfoFileDir = new File(sourceSets.main.output.resourcesDir, 'org/terasology/version')
versionInfoFile = new File(versionInfoFileDir, 'versionInfo.properties')
versionFileName = 'VERSION.txt'
versionFileName = 'VERSION'
}

repositories {
Expand Down Expand Up @@ -261,8 +261,9 @@ task distApplication(type:Sync) {
into("$buildDir/$destDirApplication")
from ('README.markdown') {
filter(FixCrLfFilter, eol:FixCrLfFilter.CrLf.newInstance("crlf"))
rename('README.markdown', 'README')
}
from ('LICENSE.txt') {
from ('LICENSE') {
filter(FixCrLfFilter, eol:FixCrLfFilter.CrLf.newInstance("crlf"))
}
from ('NOTICE') {
Expand Down Expand Up @@ -292,8 +293,9 @@ task distApplet(type:Sync) {
into("$buildDir/$destDirApplet")
from ('README.markdown') {
filter(FixCrLfFilter, eol:FixCrLfFilter.CrLf.newInstance("crlf"))
rename('README.markdown', 'README')
}
from ('LICENSE.txt') {
from ('LICENSE') {
filter(FixCrLfFilter, eol:FixCrLfFilter.CrLf.newInstance("crlf"))
}
from ('NOTICE') {
Expand Down
File renamed without changes.

0 comments on commit f2b3a61

Please sign in to comment.