Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How would you escape dollar sign in NSIS?

I need to use the SVN tag $Revision$ within an NSIS script. Obviously the NSIS compiler understands this $Revision as a variable. How could I escape this dollar?

I tried backslash, it's not working.

like image 843
tropicalm Avatar asked Mar 23 '23 07:03

tropicalm


1 Answers

MessageBox MB_OK "SVN tag $$Revision$$ "

like image 147
foobar Avatar answered Apr 28 '23 22:04

foobar