Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit cd77c29

Browse files
authored
Clean up build script by removing unnecessary steps
Removed custom file copying and package installation steps from the build script.
1 parent d6214bd commit cd77c29

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

build/10-build.sh

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -11,40 +11,3 @@ set -eoux pipefail
1111

1212
# Source helper functions
1313
# shellcheck source=/dev/null
14-
source /ctx/build/copr-helpers.sh
15-
16-
echo "::group:: Copy Custom Files"
17-
18-
# Copy Brewfiles to standard location
19-
mkdir -p /usr/share/ublue-os/homebrew/
20-
cp /ctx/custom/brew/*.Brewfile /usr/share/ublue-os/homebrew/
21-
22-
# Consolidate Just Files
23-
mkdir -p /usr/share/ublue-os/just/
24-
find /ctx/custom/ujust -iname '*.just' -exec printf "\n\n" \; -exec cat {} \; >> /usr/share/ublue-os/just/60-custom.just
25-
26-
# Copy Flatpak preinstall files
27-
mkdir -p /etc/flatpak/preinstall.d/
28-
cp /ctx/custom/flatpaks/*.preinstall /etc/flatpak/preinstall.d/
29-
30-
echo "::endgroup::"
31-
32-
echo "::group:: Install Packages"
33-
34-
# Install packages using dnf5
35-
# Example: dnf5 install -y tmux
36-
37-
# Example using COPR with isolated pattern:
38-
# copr_install_isolated "ublue-os/staging" package-name
39-
40-
echo "::endgroup::"
41-
42-
echo "::group:: System Configuration"
43-
44-
# Enable/disable systemd services
45-
systemctl enable podman.socket
46-
# Example: systemctl mask unwanted-service
47-
48-
echo "::endgroup::"
49-
50-
echo "Custom build complete!"

0 commit comments

Comments
 (0)