diff options
author | Britney Fransen <brfransen@gmail.com> | 2024-12-29 19:10:21 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2024-12-29 19:10:21 (GMT) |
commit | 75cedb9f4ede82cde63d083f9292472914a95247 (patch) | |
tree | 8304c7524a2391cc0aaba01e93c615faff1ebf65 /linhes | |
parent | b801c92763526d5d7884485ec528bafeb051873e (diff) | |
download | linhes_pkgbuild-75cedb9f4ede82cde63d083f9292472914a95247.zip linhes_pkgbuild-75cedb9f4ede82cde63d083f9292472914a95247.tar.gz linhes_pkgbuild-75cedb9f4ede82cde63d083f9292472914a95247.tar.bz2 |
linhes-system: lh_restart_needed.sh: change return code to suppress error in pacman
Diffstat (limited to 'linhes')
-rwxr-xr-x | linhes/linhes-system/PKGBUILD | 4 | ||||
-rwxr-xr-x | linhes/linhes-system/lh_restart_needed.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/linhes/linhes-system/PKGBUILD b/linhes/linhes-system/PKGBUILD index 8e5b326..a425654 100755 --- a/linhes/linhes-system/PKGBUILD +++ b/linhes/linhes-system/PKGBUILD @@ -1,6 +1,6 @@ pkgname=linhes-system pkgver=9.0.0 -pkgrel=79 +pkgrel=80 arch=('x86_64') #install=$pkgname.install pkgdesc="Everything that makes LinHES a system" @@ -42,7 +42,7 @@ sha256sums=('e6eaa2fb4819fa60cb05b4d2e7328d2914af3a73028a735ec4d56e7ece33ecc0' '91bdec992bb2c933e15625c181f2195c402060b879168ebf35944cb064c904b9' '5cacfdd02833e5a3130d765573e772e6bd5030336ba86239c5e4db5ffa36fc69' 'd51253c207d3315997d7122cb774c6d0fc38975c33e66bf416f0b1b95cf86e5b' - '52eef974c7e530d60799ee2b2c67cedc3e0c4d58948f021a609c20cfedd2056e' + 'f3d65c821ccddb5305e4338ce3fa7072d04d0af394d8061234bbac529a6b9abd' 'ebdb3ee0212e0cc72526bb5e50a032573e1894acb7bf75617243b0b49aa1f8f2' 'cd3306991c8b63f5402c0e52405cc1a6581cb3c42af74b7c2f879c8192f95610' 'e371c6a289c68fe200d7da856c20a8c579efa23178f4d62235f7359d7f6e49a1' diff --git a/linhes/linhes-system/lh_restart_needed.sh b/linhes/linhes-system/lh_restart_needed.sh index 2db8a2d..1355ff2 100755 --- a/linhes/linhes-system/lh_restart_needed.sh +++ b/linhes/linhes-system/lh_restart_needed.sh @@ -36,4 +36,4 @@ fi if [[ $rc == 1 ]]; then echo "No reboot needed." fi -exit $rc +exit 0 |