A new topic, 'Insufficient quoting in the liquibase shell script wrapper', has 
been made on a board you are watching.

You can see it at
http://liquibase.org/forum/index.php?topic=719.new#new

The text of the topic is shown below:

Hi,

I just wanted to let you know that there is a quoting bug in the liquibase 
wrapper, at least in the 1.9.x stable version.  The last line currently reads:

java -cp $CP $JAVA_OPTS liquibase.commandline.Main $@

which makes it impossible to pass arguments with spaces such as dates to the 
rollbackToDate command because the shell breaks them up into separate arguments.

A simple change to:

java -cp $CP $JAVA_OPTS liquibase.commandline.Main ${1+"$@"}

preserves the arguments exactly as they are passed to the wrapper script.

Thanks for such a great package!  You saved me many hours of writing our own 
in-house database schema management.

Michael.

Unsubscribe to new topics from this board by clicking here: 
http://liquibase.org/forum/index.php?action=notifyboard;board=1.0

Regards,
The Liquibase Community Forum Team.
------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
Liquibase-user mailing list
Liquibase-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/liquibase-user

Reply via email to