scons: emit correct message before installing git hook
Change-Id: Ied2e018a9a1b6db446edbaac871ac4efd795ec36 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
parent
3f24000d46
commit
fa5fda90c0
1 changed files with 6 additions and 4 deletions
10
SConstruct
10
SConstruct
|
@ -265,12 +265,14 @@ gitdir = main.root.Dir(".git")
|
||||||
|
|
||||||
style_message = """
|
style_message = """
|
||||||
You're missing the gem5 style hook, which automatically checks your code
|
You're missing the gem5 style hook, which automatically checks your code
|
||||||
against the gem5 style rules on hg commit and qrefresh commands. This
|
against the gem5 style rules on %s.
|
||||||
script will now install the hook in your %s.
|
This script will now install the hook in your %s.
|
||||||
Press enter to continue, or ctrl-c to abort: """
|
Press enter to continue, or ctrl-c to abort: """
|
||||||
|
|
||||||
mercurial_style_message = style_message % ".hg/hgrc file"
|
mercurial_style_message = style_message % ("hg commit and qrefresh commands",
|
||||||
git_style_message = style_message % ".git/hooks/ directory"
|
".hg/hgrc file")
|
||||||
|
git_style_message = style_message % ("'git commit'",
|
||||||
|
".git/hooks/ directory")
|
||||||
|
|
||||||
mercurial_style_upgrade_message = """
|
mercurial_style_upgrade_message = """
|
||||||
Your Mercurial style hooks are not up-to-date. This script will now
|
Your Mercurial style hooks are not up-to-date. This script will now
|
||||||
|
|
Loading…
Reference in a new issue