1
0
Fork 0
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:
Andreas Fuchs 2020-07-22 09:14:03 -04:00 committed by Jörg Thalheim
parent 0d885b439f
commit 1279274ddc
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -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)