Skip to content

Commit

Permalink
fix: make path relative
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <mirko.mollik@fit.fraunhofer.de>
  • Loading branch information
cre8 committed Apr 23, 2024
1 parent 628bbc8 commit 5e4122f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/issuer/src/keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { v4 } from 'uuid';
export async function getKeys() {
let privateKey: JWK;
let publicKey: JWK;
const folder = 'tmp';
const folder = './tmp';
if (!existsSync(folder)) {
mkdirSync(folder);
}
Expand Down
2 changes: 1 addition & 1 deletion apps/verifier/src/keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { JWK } from 'jose';
export async function getKeys() {
let privateKey: JsonWebKey;
let publicKey: JsonWebKey;
const folder = 'tmp';
const folder = './tmp';
if (!existsSync(folder)) {
mkdirSync(folder);
}
Expand Down

0 comments on commit 5e4122f

Please sign in to comment.