I am trying to minimize some files in a roll-up script using jsmin. This works very well on my local machine, but when I click on it it doesn't work at all. I am running the embedded CF development server locally and IIS in production. Not quite sure how I should debug this. Here is the relevant code snippet:
<cfset LOCAL.args = '/c "C:\Inetpub\wwwroot\jsmin.exe < #LOCAL.jsfile#"'>
<cfexecute name="c:\windows\system32\cmd.exe"
arguments="#LOCAL.args#"
timeout=10
variable="LOCAL.jsmin">
</cfexecute>
illvm source
share