From b8fe24a2c217e3cc95d65cfce725efae3ebb425f Mon Sep 17 00:00:00 2001 From: Samuel Langlois Date: Thu, 7 Jun 2012 16:16:25 +0000 Subject: [PATCH] Fix build failing when checkout folder contains a dot git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/BRANCHES/V2.0@37518 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f5e1116ba9..fcfec8e612 100644 --- a/build.gradle +++ b/build.gradle @@ -223,7 +223,7 @@ subprojects { tree.each {File file -> - destinationFile = new File(file.getPath().replaceFirst('\\.', '-min.')) + destinationFile = new File(file.getPath().replaceFirst('\\.js', '-min.js')) file.withReader{ reader -> compressor = new com.yahoo.platform.yui.compressor.JavaScriptCompressor(reader, null)