You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Explicit warning if we fail to copy squashfs content. We also choose to fail here instead of emitting a warning as failing to copy some files could lead to a broken installation.
$_CONTAINER_EXEC cp -a $CW_SOURCE_MOUNT_POINT/. $CW_INSTALLATION_PATH
61
+
$_CONTAINER_EXEC cp -a $CW_SOURCE_MOUNT_POINT/. $CW_INSTALLATION_PATH|| { print_err "Failed to copy some files, most likely incorrect file permissions inside the squashfs image"&&false; }
0 commit comments