Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
don't satisfy dependencies in spec mode
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Jan 4, 2017
1 parent a865f6a commit 4eb76db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/provider.js
Expand Up @@ -39,7 +39,7 @@ this.config = {

// This package depends on build, make sure it's installed
export function activate() {
if (atom.config.get('build-sass.manageDependencies')) {
if (atom.config.get('build-sass.manageDependencies') && !atom.inSpecMode()) {
this.satisfyDependencies();
}
}
Expand Down

0 comments on commit 4eb76db

Please sign in to comment.