Fix re-concat on build task

This commit is contained in:
Matt Corallo 2015-01-14 11:38:55 -10:00
parent 6b0e346193
commit 76cc4f305a

View file

@ -194,6 +194,6 @@ module.exports = function(grunt) {
grunt.registerTask('dev', ['connect', 'watch']);
grunt.registerTask('test', ['jshint', 'jscs', 'connect', 'saucelabs-mocha']);
grunt.registerTask('default', ['preen', 'concat', 'sass']);
grunt.registerTask('build', ['compile', 'concat:curve25519']);
grunt.registerTask('build', ['compile', 'concat:curve25519', 'concat:libtextsecure']);
};