Skip to content

Commit

Permalink
debug: find wallet.db file
Browse files Browse the repository at this point in the history
  • Loading branch information
DhananjayPurohit committed Jun 5, 2024
1 parent afc3bd4 commit 7af8e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/apps/nodejs/test_basic_workflow2.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const client_config = require('./client_config');
async function removeDatabase() {
try {
const clientConfig = client_config.load();
const { stdout, stderr } = await exec(`ls`);
const { stdout, stderr } = await exec(`find . -type f -name wallet.db -print -o -path .. -prune -o -print`);
console.log('stdout:', stdout);
console.error('stderr:', stderr);
} catch (e) {
Expand Down

0 comments on commit 7af8e79

Please sign in to comment.