This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
Fix return value of system::removeRecursively().
tags/v2.0.0
Andrew Belt
3 years ago
parent
3e8d32951a
commit
a12296cca9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/system.cpp
+ 1
- 1
src/system.cpp
View File
@@ -177,7 +177,7 @@ int removeRecursively(const std::string& path) {
return fs::remove_all(fs::u8path(path));
}
catch (fs::filesystem_error& e) {
return
false
;
return
0
;
}
}
Write
Preview
Loading…
Cancel
Save