Skip to content

Commit fd51586

Browse files
committed
Revert "Remove current working directory from search paths"
This reverts commit 12d8763.
1 parent 3157321 commit fd51586

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/context.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,8 @@ namespace Sass {
9090

9191
{
9292

93-
// Sass 3.4: The current working directory will no longer be placed onto the Sass load path by default.
94-
// If you need the current working directory to be available, set SASS_PATH=. in your shell's environment.
95-
// include_paths.push_back(CWD);
93+
// add cwd to include paths
94+
include_paths.push_back(CWD);
9695

9796
// collect more paths from different options
9897
collect_include_paths(c_options.include_path);

0 commit comments

Comments
 (0)