mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-02 23:44:37 +01:00
iopupgrade: The variables are written as integers and thus should be read as integers.
This commit is contained in:
parent
a49951ad7e
commit
cdce816fd2
1 changed files with 2 additions and 2 deletions
|
|
@ -52,14 +52,14 @@ function log {
|
|||
# anyhting it calls as stdout/stderr might no longer exist
|
||||
function finish {
|
||||
|
||||
if [ "$run_cleanup" == "1" ]
|
||||
if [ $run_cleanup -eq 1 ]
|
||||
then
|
||||
|
||||
function_call upd_cleanup
|
||||
log ""
|
||||
fi
|
||||
|
||||
if [ "$run_mount_cleanup" == "1" ]
|
||||
if [ $run_mount_cleanup -eq 1 ]
|
||||
then
|
||||
log "Cleaning up after mount"
|
||||
umount_newroot
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue