From ecfcfd45a987ff7d578d34c4f8fb49db8a540c80 Mon Sep 17 00:00:00 2001 From: h3ph4est7s Date: Sat, 17 Dec 2022 21:19:10 +0200 Subject: [PATCH] add make parent directories as needed for the kernel directory mkdir command --- static/build.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/static/build.html b/static/build.html index cf1b746c..7a6a436e 100644 --- a/static/build.html +++ b/static/build.html @@ -395,7 +395,7 @@ cd ../..

4th generation Pixels

-
mkdir android/kernel/coral
+                        
mkdir -p android/kernel/coral
 cd android/kernel/coral
 repo init -u https://github.com/GrapheneOS/kernel_manifest-coral.git -b 13
 repo sync -j16
@@ -419,7 +419,7 @@ repo sync -j16

For 5th generation Pixels:

-
mkdir android/kernel/redbull
+                        
mkdir -p android/kernel/redbull
 cd android/kernel/redbull
 repo init -u https://github.com/GrapheneOS/kernel_manifest-redbull.git -b 13
 repo sync -j16
@@ -440,14 +440,14 @@ repo sync -j16

To sync the raviole kernel for the Pixel 6 and Pixel 6 Pro:

-
mkdir android/kernel/raviole
+                        
mkdir -p android/kernel/raviole
 cd android/kernel/raviole
 repo init -u https://github.com/GrapheneOS/kernel_manifest-raviole.git -b 13
 repo sync -j16

To sync the bluejay kernel for the Pixel 6a:

-
mkdir android/kernel/bluejay
+                        
mkdir -p android/kernel/bluejay
 cd android/kernel/bluejay
 repo init -u https://github.com/GrapheneOS/kernel_manifest-bluejay.git -b 13
 repo sync -j16
@@ -471,7 +471,7 @@ repo sync -j16

To sync the pantah kernel for the Pixel 7 and Pixel 7 Pro:

-
mkdir android/kernel/pantah
+                        
mkdir -p android/kernel/pantah
 cd android/kernel/pantah
 repo init -u https://github.com/GrapheneOS/kernel_manifest-pantah.git -b 13
 repo sync -j16