Skip to content
This repository has been archived by the owner on Jun 29, 2019. It is now read-only.

Commit

Permalink
Remove chocolatey support (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
appetizermonster authored May 13, 2018
1 parent 19697c0 commit f588e33
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 41 deletions.
25 changes: 0 additions & 25 deletions chocolatey/Hain.nuspec

This file was deleted.

7 changes: 0 additions & 7 deletions chocolatey/tools/chocolateyInstall.ps1

This file was deleted.

10 changes: 1 addition & 9 deletions gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const zip = require('gulp-zip');
const electronInstaller = require('electron-winstaller');
const fs = require('fs');
const del = require('del');
const replace = require('gulp-replace');
const appPkg = require('./app/package.json');

gulp.task('deps', () => {
Expand Down Expand Up @@ -158,14 +157,7 @@ gulp.task('build-installer', ['build', 'build-zip'], () => {
return buildInstaller('ia32').then(() => buildInstaller('x64'));
});

gulp.task('build-chocolatey', () => {
return gulp
.src('./chocolatey/**/*')
.pipe(replace('${version}', appPkg.version))
.pipe(gulp.dest('./out/chocolatey/'));
});

gulp.task('build-all', ['build-zip', 'build-installer', 'build-chocolatey']);
gulp.task('build-all', ['build-zip', 'build-installer']);

gulp.task('watch', ['renderer'], () => {
const opts = {
Expand Down

0 comments on commit f588e33

Please sign in to comment.