Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I use dbm-gorm-diff to generate changelog files, it sets the author to "username (generated)". Is there some kind to have my full name and email-address inserted instead?

share|improve this question

2 Answers

up vote 1 down vote accepted

On a Windows 7 system, it picks up the environment variable USERNAME (and probably similarly on other OSes). So you could modify this value by, for ex.,

set USERNAME = c089

and then execute dbm-gorm-diff.

or you could pass a property value from the command line as in,

grails dbm-gorm-diff -Duser.name=c089

Though I can't seem to get rid of the "(generated)" text :(

share|improve this answer

If you want exactly the line of code :

String user = (System.getProperty('user.name') ?: '').trim()
String author = user ? "$user (generated)" : 'diff-generated';

So áldrin is right, you can't get rid of the generated

That's in this file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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