aboutsummaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-10-11 18:36:07 +0200
committerJakob Unterwurzacher2015-10-11 18:40:27 +0200
commitb00fc379c4d18ca848b5ded70549120755a509c4 (patch)
tree3635a70ad6a695852b5062cf513e6a2f00096be1 /main_test.go
parentd1d444435cf4351fc50ffd02c203cf4a2209b8e5 (diff)
Fix helper scripts for new top-level path
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main_test.go b/main_test.go
index f171a8c..b4dff95 100644
--- a/main_test.go
+++ b/main_test.go
@@ -12,7 +12,7 @@ import (
"testing"
)
-const tmpDir = "../tmp/"
+const tmpDir = "tmp/"
const plainDir = tmpDir + "plain/"
const cipherDir = tmpDir + "cipher/"
@@ -21,7 +21,7 @@ func mount(extraArgs ...string) {
args = append(args, extraArgs...)
args = append(args, cipherDir)
args = append(args, plainDir)
- c := exec.Command("../gocryptfs", args...)
+ c := exec.Command("./gocryptfs", args...)
c.Stdout = os.Stdout
c.Stderr = os.Stderr
err := c.Run()