mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Use production server in /dist
This commit is contained in:
11
Gruntfile.js
11
Gruntfile.js
@@ -134,7 +134,16 @@ module.exports = function(grunt) {
|
||||
},
|
||||
copy: {
|
||||
dist: {
|
||||
files: [{ expand: true, dest: 'dist/', src: ['<%= dist.src %>'] }]
|
||||
files: [{ expand: true, dest: 'dist/', src: ['<%= dist.src %>'] }],
|
||||
options: {
|
||||
process: function(content, srcpath) {
|
||||
return content.replace(
|
||||
/textsecure-service-staging.whispersystems.org/g,
|
||||
'textsecure-service.whispersystems.org').replace(
|
||||
/whispersystems-textsecure-attachments-staging.s3.amazonaws.com/g,
|
||||
'whispersystems-textsecure-attachments.s3.amazonaws.com');
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
jscs: {
|
||||
|
||||
Reference in New Issue
Block a user