ant-build-script icon indicating copy to clipboard operation
ant-build-script copied to clipboard

Minifying any unconcatenated css files... FileNotFoundException

Open bungle opened this issue 12 years ago • 2 comments

I get this on "Minifying any unconcatenated css files..."

java.io.FileNotFoundException: /site/publish/html/css/outside/outside.css

It looks like css-directory is not yet created on publish at this point. I'm still trying to figure out how to overcome this.

bungle avatar May 23 '13 21:05 bungle

Ok, I find the problem here https://github.com/h5bp/ant-build-script/blob/master/build.xml#L472:

<dirset dir="${dir.source}/" excludes="${file.default.exclude}, ${file.exclude}" includes="*"/>

I changed it to this:

<dirset dir="${dir.source}/" excludes="${file.default.exclude}, ${file.exclude}"/>

Do you remember why it was changed in a first place? Related to something else?

bungle avatar May 23 '13 22:05 bungle

Looking through for a reason why right now.

roblarsen avatar May 30 '13 15:05 roblarsen