Add clone-sparkos.sh script to root home directory

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-28 15:45:18 +00:00
parent fd97dc821c
commit 34b2ef68e1
2 changed files with 10 additions and 0 deletions

2
rootfs/root/clone-sparkos.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
git clone https://github.com/johndoe6345789/SparkOS.git

View File

@@ -111,6 +111,14 @@ export EDITOR=vi
export PAGER=less
EOF
# Create git clone script for SparkOS repository
cat > "$ROOTFS_DIR/root/clone-sparkos.sh" << 'EOF'
#!/bin/sh
git clone https://github.com/johndoe6345789/SparkOS.git
EOF
chmod +x "$ROOTFS_DIR/root/clone-sparkos.sh"
# Create a simple help script
cat > "$ROOTFS_DIR/bin/sparkos-help" << 'EOF'
#!/bin/sh