Merge pull request #145 from davidnewhall/dn2_fix_install_sh

dpkg --force-confdef --force-confold --install
This commit is contained in:
David Newhall II 2019-12-01 22:38:16 -08:00 committed by GitHub
commit 41758136ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

2
init/launchd/README.md Normal file
View File

@ -0,0 +1,2 @@
This file isn't used by the build or for any packages. The homebrew launchd is
in the [homebrew](../homebrew) folder. This file is for reference only.

View File

@ -76,7 +76,7 @@ fi
INSTALLER="rpm -Uvh"
if [ "$FILE" = "deb" ]; then
INSTALLER="dpkg -i"
INSTALLER="dpkg --force-confdef --force-confold --install"
fi
FILE=$(basename ${URL})