Skip to content

Commit a337fa1

Browse files
committed
Changed behaviour of rakefile back to original.
1 parent aeef4a5 commit a337fa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ task :update_aliases do
4545
end
4646

4747
task :clean_css do
48-
Dir.glob(File.join(File.dirname(__FILE__), "jquery.syntax*.css")) do |path|
48+
Dir.glob(File.join(File.dirname(__FILE__), "jquery.syntax.*.css")) do |path|
4949
FileUtils.rm path, :verbose => true
5050
end
5151
end
@@ -72,7 +72,7 @@ task :generate_css, [:theme,:override,:output] => [:clean_css] do |task, argumen
7272
$stderr.puts "Could not find master/override #{override} in #{theme}."
7373
end
7474

75-
Dir.glob(File.join(theme, "jquery.syntax*.sass")) do |sass|
75+
Dir.glob(File.join(theme, "jquery.syntax.*.sass")) do |sass|
7676
output_path = File.join(output, File.basename(sass, ".sass") + ".css")
7777

7878
puts "sass -I #{theme.dump} --stdin #{output_path}"

0 commit comments

Comments
 (0)