Skip to content

Commit

Permalink
verbose debian package generation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmosca committed Dec 26, 2023
1 parent 73b5543 commit 34e55ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ function release_deb(arch) {
architecture: getLinuxPackageArch('deb', arch),
maintainer: metadata.author,
description: metadata.description,
preinst: [`rm -rf ${LINUX_INSTALL_DIR}/${metadata.name}`],
preinst: [`rm -rfv ${LINUX_INSTALL_DIR}/${metadata.name}`],
postinst: [
`chown root:root ${LINUX_INSTALL_DIR}`,
`chown -R root:root ${LINUX_INSTALL_DIR}/${metadata.name}`,
Expand All @@ -587,6 +587,7 @@ function release_deb(arch) {
_out: appsDir,
_copyright: 'assets/linux/copyright',
_clean: true,
_verbose: true
}));
}
}
Expand Down

0 comments on commit 34e55ae

Please sign in to comment.