File: 1002-fix-VERSION-path.patch

package info (click to toggle)
ruby-sass 3.5.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,668 kB
  • sloc: ruby: 32,237; sh: 22; makefile: 15
file content (14 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Use correct path to VERSION
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2014-07-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/lib/sass/root.rb
+++ b/lib/sass/root.rb
@@ -3,5 +3,5 @@
   # This may be overridden by the package manager
   # if the lib directory is separated from the main source tree.
   # @api public
-  ROOT_DIR = File.expand_path(File.join(__FILE__, "../../.."))
+  ROOT_DIR = File.expand_path(File.join(__FILE__, ".."))
 end