Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vcsetup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
vcsetup
Commits
84e5a492
Commit
84e5a492
authored
8 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[hooks.pre-commit] give a more meaningfull error message
parent
bbb42851
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hooks/pre-commit
+8
-1
8 additions, 1 deletion
hooks/pre-commit
with
8 additions
and
1 deletion
hooks/pre-commit
+
8
−
1
View file @
84e5a492
...
...
@@ -76,7 +76,14 @@ def check_file(touched_file, basedir, format_binary, extension_whitelist=CPP_EXT
if
__name__
==
'
__main__
'
:
dirname
=
os
.
path
.
abspath
(
sys
.
argv
[
1
]
if
len
(
sys
.
argv
)
>
1
else
os
.
getcwd
())
fails
=
check_dir
(
dirname
,
mode
=
'
staged
'
)
try
:
fails
=
check_dir
(
dirname
,
mode
=
'
staged
'
)
except
FileNotFoundError
as
err
:
raise
RuntimeError
(
"""
If you have trouble with clang-format, you can specify which version to use with
git config hooks.clangformat clang-format
The original error was: {}
"""
.
format
(
err
))
if
len
(
fails
)
>
0
:
print
(
'
files need to be formatted:
\n\t
{}
'
.
format
(
'
\n\t
'
.
join
(
fails
))
)
sys
.
exit
(
len
(
fails
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment