Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rpm-build] remove obsolete dependency #1790

Merged
merged 1 commit into from
Jun 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ function get_release_filename(platform, ext, addition = '') {
function build_win_zip(arch) {
return function build_win_zip_proc(done) {
var pkg = require('./package.json');

// Create ZIP
console.log(`Creating ${arch} ZIP file...`);
var src = path.join(appsDir, pkg.name, arch);
Expand All @@ -328,7 +328,7 @@ function build_win_iss(arch) {
// Create Installer
console.log(`Creating ${arch} Installer...`);
const innoSetup = require('@quanle94/innosetup');

const APPS_DIR = './apps/';
const pkg = require('./package.json');

Expand Down Expand Up @@ -386,7 +386,7 @@ gulp.task('release-osx64', function(done) {

// Check if the bundle is signed
const codesignCheckArgs = [ 'codesign', '-vvv', '--deep', '--strict', src ];
execSync.apply(this, codesignCheckArgs);
execSync.apply(this, codesignCheckArgs);
}

// 'old' .zip mode
Expand Down Expand Up @@ -419,7 +419,7 @@ gulp.task('release-osx64', function(done) {
done();
});
archive.finalize();
}
}
// 'new' .dmg mode
else {
const appdmg = require('appdmg');
Expand Down Expand Up @@ -643,7 +643,7 @@ function release_rpm(arch) {
vendor: metadata.author,
summary: metadata.description,
license: 'GNU General Public License v3.0',
requires: ['libgconf-2-4', 'libatomic1'],
requires: ['libatomic1'],
prefix: '/opt',
files: [{
cwd: path.join(appsDir, metadata.name, arch),
Expand Down