Updated create and update appdir files to include Nebula-Desktop and Nebula-Controller files

This commit is contained in:
2026-02-01 21:29:13 +13:00
parent b725d5a672
commit 0137df60dd
2 changed files with 36 additions and 8 deletions
+17
View File
@@ -81,6 +81,23 @@ for file in "${FILES[@]}"; do
fi
done
# Update main launcher scripts if present
echo ""
echo "🔄 Syncing launcher scripts..."
for launcher in "Nebula-Desktop" "Nebula-Controller"; do
if [ -f "$SCRIPT_DIR/nebula-appdir/$launcher" ]; then
cp "$SCRIPT_DIR/nebula-appdir/$launcher" "$APPDIR_ROOT/$launcher"
chmod +x "$APPDIR_ROOT/$launcher" || true
echo "$launcher"
fi
done
# Sync Nebula symlink if it exists
if [ -L "$SCRIPT_DIR/nebula-appdir/Nebula" ]; then
rm -f "$APPDIR_ROOT/Nebula"
ln -sf "Nebula-Desktop" "$APPDIR_ROOT/Nebula"
echo " ✓ Nebula (symlink)"
fi
# Sync directories
echo ""
echo "📁 Syncing directories..."