forked from thoughtbot/bourbon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert back to the previous Sass path
- This was changed in 73b09f6 - It seemed to intermittently break the importing of Bourbon in Rails apps
- Loading branch information
Tyson Gach
committed
Mar 23, 2016
1 parent
090ef01
commit a462ed2
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
require "bourbon/generator" | ||
|
||
bourbon_path = File.expand_path("../../core", __FILE__) | ||
ENV["SASS_PATH"] = File.join([ENV["SASS_PATH"], bourbon_path].compact) | ||
ENV["SASS_PATH"] = [ | ||
ENV["SASS_PATH"], | ||
bourbon_path, | ||
].compact.join(File::PATH_SEPARATOR) |