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.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Finally found what the probleme was. Here's the line of code the way it finally works :

run "find #{current_path}/public/static/js/ -name '*.js'| xargs -I file #{uglify_path} --overwrite file"

Obviously, the --overwrite option wasn't were it should have been...

link|improve this answer
feedback

From the uglifyjs docs:

--overwrite — if the code is read from a file (not from STDIN) and you pass --overwrite then the output will be written in the same file.

So perhaps something like:

uglify_bin = "uglifyjs"
run "find #{current_path}/public/static/js/ -type f -name '*.js' -print0 | xargs -0 #{uglify_bin} --overwrite"

Will work.

link|improve this answer
Believe it or not, I did read the doc, and allready tried that. Unfortunately, didn't do the job. – pixelboy Jul 31 '11 at 15:53
Does uglifyjs support getting more than one filename as an argument at at time? If not, it may only be processing the first JS file. Perhaps you can try adding -n1 to your xargs command: run "find #{current_path}/public/static/js/ -type f -name '*.js' -print0 | xargs -n1 -0 #{uglify_bin}" --overwrite Also, does it work if you run the find command manually? – sagi Jul 31 '11 at 15:56
Not any better. More frustrating, when I do a uglifyjs bootstrap.js > bootstrap.min.js , new file is created, and perfectly compressed. I'm puzzled... – pixelboy Jul 31 '11 at 16:19
And when you manually run uglifyjs --overwrite bootstrap.js - does it work and replace the contents of the original bootstrap.js file? – sagi Jul 31 '11 at 16:21
Yes, perfectly ... oO ? – pixelboy Jul 31 '11 at 16:24
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.