summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd/path.go
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/cmd/path.go')
-rw-r--r--runsc/cmd/path.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cmd/path.go b/runsc/cmd/path.go
index baba937a8..1276f0dbd 100644
--- a/runsc/cmd/path.go
+++ b/runsc/cmd/path.go
@@ -22,7 +22,7 @@ import (
func getwdOrDie() string {
wd, err := os.Getwd()
if err != nil {
- Fatalf("error getting current working directory: %v", err)
+ Fatalf("getting current working directory: %v", err)
}
return wd
}