mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Fix a code typo that prevented mkdir from firing (unnoticed
usually because another part of the code succeeded in making the same directory). MFC after: 3 days
This commit is contained in:
parent
6b22f423cf
commit
c7136fd54f
1 changed files with 1 additions and 1 deletions
|
|
@ -258,7 +258,7 @@ f_index_initialize()
|
|||
|
||||
# Finally, move the temporary file into place
|
||||
case "$PACKAGES_INDEX_CACHEFILE" in
|
||||
*/*) f_eval_catch -d $funcname mkdir \
|
||||
*/*) f_eval_catch -d $__funcname mkdir \
|
||||
'mkdir -p "%s"' "${PACKAGES_INDEX_CACHEFILE%/*}"
|
||||
esac
|
||||
f_eval_catch -d $__funcname mv 'mv -f "%s" "%s"' \
|
||||
|
|
|
|||
Loading…
Reference in a new issue