Skip to content

Commit 4a28e06

Browse files
committed
fixup! fs: runtime deprecate rmdir recursive option
1 parent af9c8e9 commit 4a28e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ function rmdirSync(path, options) {
910910
path = getValidatedPath(path);
911911

912912
if (options?.recursive) {
913-
emitRecursiveRmdirWarning()
913+
emitRecursiveRmdirWarning();
914914
options = validateRmOptionsSync(path, { ...options, force: true }, true);
915915
lazyLoadRimraf();
916916
return rimrafSync(pathModule.toNamespacedPath(path), options);

0 commit comments

Comments
 (0)