Fix sysupgrade update-checker
This commit is contained in:
parent
37c31d3ce6
commit
1575ccaf3f
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
source ./check
|
||||
source "${ROOTPATH}/functions/check"
|
||||
|
||||
function sysupgrade_main() {
|
||||
if ! check_local; then
|
||||
if ! check_local &> /dev/null; then
|
||||
echo "Sysupgrade true"
|
||||
else
|
||||
echo "Sysupgrade false"
|
||||
|
|
Loading…
Reference in a new issue