Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion iiab-android
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,9 @@ install_iiaboa_dashboard() {

# Copy dashboard files
mkdir -p "$dash_dest"
rsync -Aax "${dash_src}/" "$dash_dest/"
# Proot-safe copy: rsync's lchmod -> fchmodat2 (glibc>=2.39, kernel>=6.6) isn't
# translated by proot (rc=23 under proot on 6.6+ kernels); cp -a is reliable.
cp -a "${dash_src}/." "$dash_dest/"

# Install node dependencies
log "Installing Node dependencies for the dashboard..."
Expand Down
Loading