Ran go fmt on code.
parent
61f9a6e395
commit
4476d0f449
14
main.go
14
main.go
|
@ -1,15 +1,15 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"bufio"
|
||||||
"flag"
|
"flag"
|
||||||
"path"
|
"fmt"
|
||||||
"path/filepath"
|
|
||||||
"os"
|
|
||||||
"os/user"
|
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"bufio"
|
"os"
|
||||||
|
"os/user"
|
||||||
|
"path"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
@ -116,7 +116,7 @@ func SetVenture(args []string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepend status with user's name
|
// Prepend status with user's name
|
||||||
input = "~"+curUser.Username+input
|
input = "~" + curUser.Username + input
|
||||||
|
|
||||||
// Write file and create if it doesn't exist as world-readable.
|
// Write file and create if it doesn't exist as world-readable.
|
||||||
err = ioutil.WriteFile(outputPath, []byte(input), 0644)
|
err = ioutil.WriteFile(outputPath, []byte(input), 0644)
|
||||||
|
|
Loading…
Reference in New Issue