From 76cc4f305a95a5a0cf4cae0d995c3ac844a8b1b8 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 14 Jan 2015 11:38:55 -1000 Subject: [PATCH] Fix re-concat on build task --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3a84f03a..6f4df08f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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']); };