diff options
author | Araq <rumpf_a@web.de> | 2019-02-20 12:28:43 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-02-20 12:28:43 +0100 |
commit | 2990a5ea5416520596b158a7fcb96106763e680f (patch) | |
tree | f3c37a132e690eef6dd697cfcc1179ff13508fe1 /koch.nim | |
parent | 7b31a81d4577a5d293e4f5bfa591848d93eb8320 (diff) | |
download | Nim-2990a5ea5416520596b158a7fcb96106763e680f.tar.gz |
koch.nim: indentation uses 2 spaces
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/koch.nim b/koch.nim index ac95c1566..b776927ae 100644 --- a/koch.nim +++ b/koch.nim @@ -192,11 +192,11 @@ proc zip(latest: bool; args: string) = ["tools/niminst/niminst".exe, VersionAsString]) proc ensureCleanGit() = - let (outp, status) = osproc.execCmdEx("git diff") - if outp.len != 0: - quit "Not a clean git repository; 'git diff' not empty!" - if status != 0: - quit "Not a clean git repository; 'git diff' returned non-zero!" + let (outp, status) = osproc.execCmdEx("git diff") + if outp.len != 0: + quit "Not a clean git repository; 'git diff' not empty!" + if status != 0: + quit "Not a clean git repository; 'git diff' returned non-zero!" proc xz(latest: bool; args: string) = ensureCleanGit() |