Merge pull request #273 from matthiaskrgr/strip_whitespace
runastyle: add line which strips trailing whitspaces from cfg files (and run it on the files)
This commit is contained in:
commit
430d6d398c
|
@ -35,3 +35,5 @@ astyle $style $options --recursive "samples/*.cpp"
|
||||||
# Convert tabs to spaces.. even in strings
|
# Convert tabs to spaces.. even in strings
|
||||||
# sed -i "s/\t/ /g" test/test*.cpp
|
# sed -i "s/\t/ /g" test/test*.cpp
|
||||||
|
|
||||||
|
# strip useless whitespaces from config files
|
||||||
|
sed -i "s/\ $//" cfg/*
|
||||||
|
|
Loading…
Reference in New Issue