@@ -29,7 +29,7 @@ module.exports = function (grunt) {
29
29
resolve = common . resolve ,
30
30
platform = common . platform ( ) ,
31
31
staging ;
32
-
32
+
33
33
if ( platform === "mac" ) {
34
34
staging = "installer/mac/staging/<%= build.name %>.app/Contents" ;
35
35
} else if ( platform === "win" ) {
@@ -46,11 +46,11 @@ module.exports = function (grunt) {
46
46
/* linux */
47
47
"cef-linux32" : {
48
48
"dest" : "<%= downloads %>" ,
49
- "src" : "http://dev.brackets.io/ cef/cef_binary_<%= cef.version %>_linux32_release.zip"
49
+ "src" : "<%= cef.url %> /cef_binary_<%= cef.version %>_linux32_release.zip"
50
50
} ,
51
51
"cef-linux64" : {
52
52
"dest" : "<%= downloads %>" ,
53
- "src" : "http://dev.brackets.io/ cef/cef_binary_<%= cef.version %>_linux64_release.zip"
53
+ "src" : "<%= cef.url %> /cef_binary_<%= cef.version %>_linux64_release.zip"
54
54
} ,
55
55
"node-linux32" : {
56
56
"dest" : "<%= downloads %>" ,
@@ -63,7 +63,11 @@ module.exports = function (grunt) {
63
63
/* mac */
64
64
"cef-mac" : {
65
65
"dest" : "<%= downloads %>" ,
66
- "src" : "http://dev.brackets.io/cef/cef_binary_<%= cef.version %>_macosx.zip"
66
+ "src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_macosx.zip"
67
+ } ,
68
+ "cef-mac-symbols" : {
69
+ "src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_macosx32_release_symbols.zip" ,
70
+ "dest" : "<%= downloads %>/cefsymbols"
67
71
} ,
68
72
"node-mac" : {
69
73
"dest" : "<%= downloads %>" ,
@@ -72,7 +76,11 @@ module.exports = function (grunt) {
72
76
/* win */
73
77
"cef-win" : {
74
78
"dest" : "<%= downloads %>" ,
75
- "src" : "http://dev.brackets.io/cef/cef_binary_<%= cef.version %>_windows.zip"
79
+ "src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_windows.zip"
80
+ } ,
81
+ "cef-win-symbols" : {
82
+ "src" : [ "<%= cef.url %>/cef_binary_<%= cef.version %>_windows32_debug_symbols.zip" , "<%= cef.url %>/cef_binary_<%= cef.version %>_windows32_release_symbols.zip" ] ,
83
+ "dest" : "<%= downloads %>/cefsymbols"
76
84
} ,
77
85
"node-win" : {
78
86
"dest" : "<%= downloads %>" ,
@@ -201,6 +209,7 @@ module.exports = function (grunt) {
201
209
}
202
210
} ,
203
211
"cef" : {
212
+ "url" : "http://s3.amazonaws.com/files.brackets.io/cef" ,
204
213
"version" : "3.1547.1459"
205
214
} ,
206
215
"node" : {
0 commit comments