Skip to content

Commit

Permalink
replace deprecated rmdir with rm
Browse files Browse the repository at this point in the history
Summary:
reported in gh issue
#5667

Reviewed By: nikoant

Differential Revision: D61539207

fbshipit-source-id: 7f816cefa4981ff2c57fb04a483a98617f96d132
  • Loading branch information
antonk52 authored and facebook-github-bot committed Aug 20, 2024
1 parent 657e5b7 commit b819119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/flipper-server/src/devices/ios/IOSBridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export class SimctlBridge implements IOSBridge {
)}`,
);
} finally {
await fs.rmdir(extractTmpDir, {recursive: true});
await fs.rm(extractTmpDir, {recursive: true});
}
}

Expand Down

0 comments on commit b819119

Please sign in to comment.