diff options
author | Jakob Unterwurzacher | 2015-10-11 18:36:07 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-10-11 18:40:27 +0200 |
commit | b00fc379c4d18ca848b5ded70549120755a509c4 (patch) | |
tree | 3635a70ad6a695852b5062cf513e6a2f00096be1 /main_test.go | |
parent | d1d444435cf4351fc50ffd02c203cf4a2209b8e5 (diff) |
Fix helper scripts for new top-level path
Diffstat (limited to 'main_test.go')
-rw-r--r-- | main_test.go | 4 |
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() |