Skip to content

Commit 578a52b

Browse files
committed
Fix initramfs copy path
Recently i encountered the exit code 71 which i traced back to line NodeOS#75 in scripts/build and saw that it used a - (minus) instead of a _ (underscore) so i changed the concatenation of the strings
1 parent 96b0b4f commit 578a52b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fi
7272
#
7373

7474
BAREBONES=$BAREBONES/out/$CPU
75-
INITRAMFS=$INITRAMFS/out/$CPU-$SINGLE_USER
75+
INITRAMFS=$INITRAMFS/out/${CPU}_${SINGLE_USER}
7676
USERSFS=$USERSFS/out/$CPU.tar.gz
7777

7878
STEP_DIR=$OUT_DIR

0 commit comments

Comments
 (0)