Skip to content
Snippets Groups Projects
Commit 31c2a8f9 authored by Lucas Kanashiro's avatar Lucas Kanashiro
Browse files

Add a patch to fix Rakefile regex. Closes: #892457

parent 6158b389
No related branches found
No related tags found
No related merge requests found
Description: Fixes Rakefile regex
Replaces '-' to '*', since '-' means a range in ruby regex and not the
character itself.
Author: Lucas Kanashiro <kanashiro@debian.org>
Last-Updated: 2019-02-08
--- a/Rakefile
+++ b/Rakefile
@@ -31,7 +31,7 @@ def map_dependencies
basename = File.basename path
file = File.read path
- matchdata = file.match(/define\(\s*\[\s*([\"\.\/\,\w\s-\:]+)\]/m)
+ matchdata = file.match(/define\(\s*\[\s*([\"\.\/\,\w\s*\:]+)\]/m)
next if matchdata.nil?
fix-Rakefile-regex.patch
fix-jquery-ui-check.patch fix-jquery-ui-check.patch
engine-root.patch engine-root.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment