Fixed switch in test and readme.

This commit is contained in:
Marvin Blum
2015-10-28 17:50:46 +01:00
parent a64bef135d
commit bba215cd8d
6 changed files with 16 additions and 17 deletions

View File

@@ -22,11 +22,13 @@ type ASLFile struct {
newname string
}
var recursive bool = false
var pretty bool = false
var exit bool = false
var aslFiles []ASLFile
var inDir string
var (
recursive bool = false
pretty bool = false
exit bool = false
aslFiles []ASLFile
inDir string
)
func usage() {
fmt.Println("Usage: asl [-v|-r|-pretty|--help] <input directory> <output directory>\n")