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
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
source ./check
|
source "${ROOTPATH}/functions/check"
|
||||||
|
|
||||||
function sysupgrade_main() {
|
function sysupgrade_main() {
|
||||||
if ! check_local; then
|
if ! check_local &> /dev/null; then
|
||||||
echo "Sysupgrade true"
|
echo "Sysupgrade true"
|
||||||
else
|
else
|
||||||
echo "Sysupgrade false"
|
echo "Sysupgrade false"
|
||||||
|
|
Loading…
Reference in a new issue