Permalink
Browse files

fix unhashable list bug

  • Loading branch information...
1 parent c9fb930 commit c21679fe34fee068fedf8c80d8488ad518b4905e Stephen Stewart committed May 25, 2016
Showing with 2 additions and 1 deletion.
  1. +2 −1 snapcraft/plugins/nodejs.py
@@ -78,7 +78,8 @@ def schema(cls):
# Inform Snapcraft of the properties associated with building. If these
# change in the YAML Snapcraft will consider the build step dirty.
- schema['build-properties'].append(['node-packages', 'node-engine'])
+ schema['build-properties'].append('node-packages')
+ schema['build-properties'].append('node-engine')
return schema

0 comments on commit c21679f

Please sign in to comment.