-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
55 lines (45 loc) · 1.27 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
"flag"
"fmt"
"os"
"sync"
)
func parseArgs() (string, []string) {
cmdPtr := flag.String("cmd", "", "Command to run ")
updatePtr := flag.Bool("update", false, "Update LiveCode")
baseCmd := flag.String("base", "", "Base command to run")
flag.Parse()
if *updatePtr {
fmt.Println("Updating...")
Run("curl -fsSL https://raw.githubusercontent.com/joshiojas/LiveCode/main/uninstall.sh | bash")
fmt.Println("Uninstall complete")
Run("curl -fsSL https://raw.githubusercontent.com/joshiojas/LiveCode/main/install.sh | bash")
fmt.Println("Update complete")
os.Exit(0)
}
if *cmdPtr == "" {
fmt.Println("Error: -cmd flag is required")
flag.Usage()
os.Exit(1)
}
if *baseCmd != "" {
c := *baseCmd
fmt.Println("Running base command...")
Run(c)
}
return *cmdPtr, flag.Args()
}
func main() {
run, args := parseArgs()
var wg sync.WaitGroup
wg.Add(1)
restart := make(chan bool)
fmt.Println("Starting command...")
fmt.Println("Press Ctrl+C to exit")
curdir, _ := os.Getwd()
fmt.Println("Watching directory: ", curdir)
go runCommand(&wg, run, args, restart)
go eventListener(restart, &wg)
wg.Wait()
}