We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4b34bb commit 68342e8Copy full SHA for 68342e8
rakefile
@@ -52,8 +52,8 @@ def message(text)
52
end
53
54
def refresystem_dir(path)
55
- rm_rf path if FileTest.exists? path
56
- mkdir_p path
+ system %{ rm -rf #{path} } if FileTest.exists? path
+ system %{ mkdir -p#{path} }
57
58
59
module Builder
@@ -275,7 +275,7 @@ class SDL_mixer < Package
275
arch
276
)
277
278
- rm_rf headersDir
+ system %{ rm -rf #{headersDir} }
279
280
281
0 commit comments