mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Don't include version in .deb asset name
This commit is contained in:
@@ -59,9 +59,13 @@ getAssets = ->
|
||||
]
|
||||
when 'linux'
|
||||
buildDir = grunt.config.get('atom.buildDir')
|
||||
if process.arch is 'ia32'
|
||||
arch = 'i386'
|
||||
else
|
||||
arch = 'amd64'
|
||||
debAsset = fs.listSync(buildDir, ['.deb'])[0]
|
||||
[
|
||||
{assetName: path.basename(debAsset), sourcePath: debAsset}
|
||||
{assetName: "atom-#{arch}.deb", sourcePath: debAsset}
|
||||
]
|
||||
|
||||
logError = (message, error, details) ->
|
||||
|
||||
Reference in New Issue
Block a user