diff options
Diffstat (limited to 'Meta/build-root-filesystem.sh')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 1660e2f47d..9d9bc52faa 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -155,6 +155,15 @@ cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibCpp/Tests/parser mnt/home/ano cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibCpp/Tests/preprocessor mnt/home/anon/cpp-tests/preprocessor cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibWasm/Tests mnt/home/anon/wasm-tests cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibJS/Tests/test-common.js mnt/home/anon/wasm-tests + +if [ -n "$SERENITY_COPY_SOURCE" ] ; then + printf "\ncopying Serenity's source... " + rm -fr mnt/home/anon/Source/serenity + mkdir -p mnt/home/anon/Source/serenity + git clone --depth=1 file://"$SERENITY_SOURCE_DIR" mnt/home/anon/Source/serenity + rm -fr mnt/home/anon/Source/serenity/.git +fi + chmod 700 mnt/root chmod 700 mnt/home/anon chmod 700 mnt/home/nona |