Skip to content

Commit

Permalink
Merge pull request #1368 from HomerSp/fix-deb-deploy
Browse files Browse the repository at this point in the history
Fix deb deploy not working
  • Loading branch information
HomerSp committed Jul 22, 2021
2 parents f7ae117 + 160b96b commit 8cb37dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ archOpts.forEach (arch) ->
console.log 'fpm arguments: ' + fpmArgs.join(' ')
process.exit(1)
return child

names['linux'].push 'deploy:linux-' + arch + ':' + target
fullNames.push('deploy:linux-' + arch + ':' + target)

Expand Down Expand Up @@ -488,8 +489,10 @@ archOpts.forEach (arch) ->
options.rename = (dest, src) -> path.join(dest, "#{json.name}-#{json.version}-linux-#{options.arch}.deb")
debian options

names['linux'].push 'deploy:linux-' + arch + ':deb'
fullNames.push('deploy:linux-' + arch + ':deb')
done()

names['linux'].push 'deploy:linux-' + arch + ':deb'
fullNames.push('deploy:linux-' + arch + ':deb')

gulp.task "deploy:linux-#{arch}:deb",
gulp.series("deploy:linux-#{arch}", "deploy:linux-#{arch}:deb:nodep")
Expand Down

0 comments on commit 8cb37dc

Please sign in to comment.