aboutsummaryrefslogtreecommitdiff
path: root/package_git.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2018-05-24 22:23:56 +0700
committerShulhan <ms@kilabit.info>2018-05-24 22:23:56 +0700
commitbb551cb628cc3a7fd7fb34000c64ac51b7b1d153 (patch)
tree081d550f0e09ddd8a163abf08f71643d7f2c9ad5 /package_git.go
parent4f4754c2fbd7912f20e87da9d42cc04e660aa101 (diff)
downloadbeku-bb551cb628cc3a7fd7fb34000c64ac51b7b1d153.tar.xz
Replace "log" with "fmt"
Diffstat (limited to 'package_git.go')
-rw-r--r--package_git.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/package_git.go b/package_git.go
index 8f43b47..c223960 100644
--- a/package_git.go
+++ b/package_git.go
@@ -3,7 +3,6 @@ package beku
import (
"bytes"
"fmt"
- "log"
"os"
"os/exec"
"path/filepath"
@@ -234,7 +233,7 @@ func (pkg *Package) gitRemoteChange(newPkg *Package) (err error) {
err = cmd.Run()
if err != nil {
- log.Println("gitRemoteChange:", err)
+ fmt.Fprintln(defStderr, "gitRemoteChange:", err)
}
//nolint:gas