mirror of
https://github.com/thebaer/tildes.git
synced 2018-07-20 07:15:21 +00:00
-d flag for specifying directory to scan
This commit is contained in:
parent
3ce4b0bf23
commit
4a860ffa1a
11
code.go
11
code.go
@ -4,18 +4,23 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
"flag"
|
||||||
"bufio"
|
"bufio"
|
||||||
"strings"
|
"strings"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"text/template"
|
"text/template"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
var searchDir string
|
||||||
searchDir = "Code"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Println("Starting...")
|
fmt.Println("Starting...")
|
||||||
|
|
||||||
|
// Get any arguments
|
||||||
|
dirPtr := flag.String("d", "Code", "Directory to scan for each user.")
|
||||||
|
flag.Parse()
|
||||||
|
searchDir = *dirPtr
|
||||||
|
|
||||||
generate(findProjects())
|
generate(findProjects())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user