Skip to content

Commit b2d852f

Browse files
committed
functions: Remove accidental time call added to UID/GID mapping
Thanks @ThibautPlg
1 parent f3ff0a6 commit b2d852f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assets/runtime/functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ map_uidgid() {
848848
# Change permissions on all files owned by the original UID/GID to the new UID/GID
849849
# except for the data directory, which is expected to be managed by this docker and already has the correct permissions set
850850
# --max-procs and -n options are used to speed up the process by parallelizing it and processing files in batches
851-
time find ${REDMINE_HOME} -path ${REDMINE_DATA_DIR}/\* -prune -o -print0 | xargs --max-procs="$(nproc)" -n 50 -0 chown -h ${REDMINE_USER}:
851+
find ${REDMINE_HOME} -path ${REDMINE_DATA_DIR}/\* -prune -o -print0 | xargs --max-procs="$(nproc)" -n 50 -0 chown -h ${REDMINE_USER}:
852852
fi
853853
}
854854

0 commit comments

Comments
 (0)