filefct: fixed missing function exports

This commit is contained in:
levasseur
2021-12-15 18:40:25 +01:00
parent 1839924623
commit 8edba547bd

View File

@@ -143,6 +143,7 @@ appendfile()
die 12
fi
}
export -f appendfile
# ------------------------------------------------------------------------------
@@ -165,6 +166,7 @@ isdirempty()
fi
return 1
}
export -f isdirempty
# ------------------------------------------------------------------------------
@@ -210,6 +212,7 @@ patchfile()
unset rights dstfile
}
export -f patchfile
# ------------------------------------------------------------------------------
@@ -226,6 +229,7 @@ tagfile()
fi
done
}
export -f tagfile
# ------------------------------------------------------------------------------
@@ -240,5 +244,6 @@ file_exists()
fi
done
}
export -f file_exists
# EOF