i have a local development web with an index.html which is using:

<!-- LESS -->
<link rel="stylesheet/less" type="text/css" href="css/styles.less" />
<script src="js/lib/less-1.1.3.min.js" type="text/javascript"></script>

when i am ready editing I commit/push to my development server and the git post-recieve hook runs my build.sh and builds my css / requireJS / smartsprites app.

How can i replace the above code in my static HTML file with:

<link rel="stylesheet" type="text/css" href="css/styles.css" />

without switching to server-side scripting (PHP/etc) or on the fly node.js css rendering.

In my build.sh script? With regexp? How? An example would be nice.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can just use sed:

sed -i -e 's/styles\.less/styles\.css/g' index.html

I haven't used git-post-receive (I didn't even know it existed! thanks :P), but you could just shove it into your build.sh file or whatever file runs when you push your files to the server.

link|improve this answer
nice! i will go for it. – Riebel Sep 28 '11 at 16:05
Thanks for the git hook thing. I always manually change stuff every time I push my code, so this should make it much easier to manage. – Blender Sep 28 '11 at 16:07
feedback

Your Answer

 
or
required, but never shown

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