Skip to content

Commit e94ce4e

Browse files
committed
Fix cpio_to_iso.sh #2
1 parent e76f46c commit e94ce4e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/cpio_to_iso.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ mkdir -p $TMP_PATH/rootfs
1515
cd $TMP_PATH/rootfs
1616
cpio -idmv < $CPIO_IMG_ABSOLUTE_PATH
1717

18-
find . -maxdepth 1 -not -path . | LC_ALL=C sort > pathlist
19-
2018
xorriso \
2119
-preparer_id xorriso \
2220
-volume_date 'all' "=$SOURCE_DATE_EPOCH" \
@@ -28,8 +26,8 @@ xorriso \
2826
-full-iso9660-filenames \
2927
-uid 0 \
3028
-gid 0 \
31-
-path-list pathlist \
32-
-output $DESTINATION_DIR/$FILENAME
29+
-output $DESTINATION_DIR/$FILENAME \
30+
.
3331

3432
rm -rf $TMP_PATH
3533

0 commit comments

Comments
 (0)