mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-31 04:14:37 +00:00
Use /tmp as the temporary dir for ssh-to-gpg
This isn't great: but it might prevent the agent from complaining.
This commit is contained in:
parent
0d885b439f
commit
1279274ddc
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ func ok(tb testing.TB, err error) {
|
|||
func TestCli(t *testing.T) {
|
||||
_, filename, _, _ := runtime.Caller(0)
|
||||
assets := path.Join(path.Dir(filename), "test-assets")
|
||||
tempdir, err := ioutil.TempDir("", "testdir")
|
||||
tempdir, err := ioutil.TempDir("/tmp", "testdir")
|
||||
ok(t, err)
|
||||
defer os.RemoveAll(tempdir)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue