Skip to content

Commit

Permalink
Merge branch 'develop' into enhancement/140-isolate-vr-tests-to-be-ge…
Browse files Browse the repository at this point in the history
…neric-for-all-wpr-features
  • Loading branch information
Mai-Saad authored Jan 13, 2025
2 parents bb134b4 + 2617e94 commit e818d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ export async function updatePostStatus(id: number, status: string): Promise<void
export async function readFile(path: string): Promise<string> {
const cwd = configurations.rootDir;
const command = wrapPrefix(`sudo cat ${path}`);
const result = exec(command, { cwd: cwd, async: false });
const result = exec(command, { cwd: cwd, async: false, silent: true });

if (result.code !== 0) {
return '';
Expand Down

0 comments on commit e818d7d

Please sign in to comment.