On the sass.inc file the destination directory is not correctly set because file_directory_path doesn't exists anymore on Drupal 7:

The line:
'directory' => variable_get('file_directory_path', conf_path() . '/files') . '/sasson/' . $theme_name,

Should be fixed using the following method:
'directory' => variable_get('file_' . file_default_scheme() . '_path', conf_path() . '/files') . '/sasson/' . $theme_name,

Thanks :-)

Comments

tsi’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

updated text

  • Commit 60c8cc6 on 7.x-3.x, PHPSass, 7.x-3.x-Assetic, 7.x-3.x-susy by tsi:
    issue #1740098 by FiNeX - file_directory_path has been removed from...