forked from OSInside/kiwi-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update .indent helper script to use 4 spaces as indention
- Loading branch information
Showing
3 changed files
with
3 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
#!/bin/bash | ||
for file in $(find -type f | grep -v Makefile | grep -v .git | grep -v refresults | grep -v kiwiTestRepo ); do | ||
mode=$(stat -c %a $file) | ||
expand -t 2 $file > $file.tmp && mv $file.tmp $file | ||
expand -t 4 $file > $file.tmp && mv $file.tmp $file | ||
chmod $mode $file | ||
done | ||
rm modules/KIWISchema.rng | ||
make modules/KIWISchema.rng | ||
|
||
sed -i -e 's@\	@\ \ \ \ @' xsl/pretty.xsl | ||
sed -i -e 's@\	@\ \ \ \ @' xsl/print.xsl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters