diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-25 09:29:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-25 09:29:27 (GMT) |
commit | 2b786624cdf7e14d43d2f2e85083bbdeee82c356 (patch) | |
tree | a712a1d0ed4fdaf363c769fe7822df702532704f /win/mkd.bat | |
parent | 5a99689c346902f2878e596d141f9d70a44d3d29 (diff) | |
download | tk-2b786624cdf7e14d43d2f2e85083bbdeee82c356.zip tk-2b786624cdf7e14d43d2f2e85083bbdeee82c356.tar.gz tk-2b786624cdf7e14d43d2f2e85083bbdeee82c356.tar.bz2 |
Fix bug in "make dist" when system-encoding is UTF-8: eolFix will then translate some windows-specific files to UTF-8 too.
Solution: commit those files with CRLF line-ending, which eliminates the need for eolFix altgether.
See als: [495120] for the reason why eolFix was introduced in the first place. No longer needed with fossil.
Diffstat (limited to 'win/mkd.bat')
-rw-r--r-- | win/mkd.bat | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/win/mkd.bat b/win/mkd.bat index f741daf..1bd5ccb 100644 --- a/win/mkd.bat +++ b/win/mkd.bat @@ -1,12 +1,12 @@ -@echo off - -if exist %1\nul goto end - -md %1 -if errorlevel 1 goto end - -echo Created directory %1 - -:end - - +@echo off
+
+if exist %1\nul goto end
+
+md %1
+if errorlevel 1 goto end
+
+echo Created directory %1
+
+:end
+
+
|