I'm facing some strange issue, that sure isn't much, but hell, am I a noob; After deploying my app via capistrano, i'm passing all my css through the yui compressor, using :
run "find #{current_path}/public/static/css/ -name '*.css' -print0 | xargs -0 -I file #{cmd} file -o file"
A quick lookaround and a few tests made me decide to use node's uglify-js for javascript compression, so I went for a simple
uglify_bin = "uglifyjs"
run "find #{current_path}/public/static/js/ -type f -name '*.js' -print0 | xargs -0 #{uglify_bin}"
in the same recipe. Deployment seems to go fine, but a quick inspection at my js files shows uglifyjs didn't do it's job.
Here's an extract of the console output :
* executing "find /home/USER/www/project/current/public/static/js/ -type f -name '*.js'| xargs uglifyjs --overwrite"
servers: ["project.com"]
[project.com] executing command
command finished in 127ms
Where am I being a complete idiot (yes, it's the word...) ? Thanks.