|
2 | 2 |
|
3 | 3 | set -oue pipefail |
4 | 4 |
|
| 5 | +cd /ctx |
| 6 | + |
5 | 7 | # Update |
6 | 8 | echo "::group:: Update" |
7 | | -/ctx/main-repo/build_files/update-stage.sh |
| 9 | +./main-repo/build_files/update-stage.sh |
8 | 10 | echo "::endgroup::" |
9 | 11 |
|
10 | 12 | # Remove packages |
11 | 13 | echo "::group:: Remove packages" |
12 | | -/ctx/main-repo/build_files/remove-packages.sh |
| 14 | +./main-repo/build_files/remove-packages.sh |
13 | 15 | echo "::endgroup::" |
14 | 16 |
|
15 | | -# Install Packages |
16 | | - |
17 | 17 | # Install Kernel |
18 | 18 | echo "::group:: Install Surface Kernel" |
19 | | -/ctx/install-stage-surface-kernel.sh |
20 | | -echo "::endgroup::" |
21 | | - |
22 | | -## Install Mullvad |
23 | | -echo "::group:: Install Mullvad" |
24 | | -/ctx/main-repo/build_files/install-stage-mullvad.sh |
25 | | -echo "::endgroup::" |
26 | | - |
27 | | -## Install Megasync |
28 | | -echo "::group:: Install Megasync" |
29 | | -/ctx/main-repo/build_files/install-stage-megasync.sh |
30 | | -echo "::endgroup::" |
31 | | - |
32 | | -## Install Nushell |
33 | | -echo "::group:: Install Nushell" |
34 | | -/ctx/main-repo/build_files/install-stage-nushell.sh |
| 19 | +./install-stage-surface-kernel.sh |
35 | 20 | echo "::endgroup::" |
36 | 21 |
|
37 | | -## Install LibreWolf |
38 | | -echo "::group:: Install LibreWolf" |
39 | | -/ctx/main-repo/build_files/install-stage-librewolf.sh |
40 | | -echo "::endgroup::" |
41 | | - |
42 | | -## Install FirefoxPWA |
43 | | -echo "::group:: Install FirefoxPWA" |
44 | | -/ctx/main-repo/build_files/install-stage-PWAsForFirefox.sh |
45 | | -echo "::endgroup::" |
46 | | - |
47 | | -## Install Misc |
48 | | -echo "::group:: Install Misc" |
49 | | -/ctx/main-repo/build_files/install-stage-misc.sh |
50 | | -echo "::endgroup::" |
51 | | - |
52 | | -## Install Fonts |
53 | | -echo "::group:: Install Fonts" |
54 | | -/ctx/main-repo/build_files/install-stage-fonts.sh |
55 | | -echo "::endgroup::" |
| 22 | +# Install Main Image |
| 23 | +cd /ctx/main-repo/build_files |
| 24 | +./install-stage.sh |
| 25 | +cd /ctx |
56 | 26 |
|
57 | 27 | # Generate initramfs |
58 | 28 | echo "::group:: Generate initramfs" |
59 | | -/ctx/generate-initramfs.sh |
| 29 | +./generate-initramfs.sh |
60 | 30 | echo "::endgroup::" |
61 | 31 |
|
62 | 32 | # Cleanup |
63 | 33 | echo "::group:: Cleanup" |
64 | | -/ctx/main-repo/build_files/clean.sh |
| 34 | +./main-repo/build_files/clean.sh |
65 | 35 | echo "::endgroup::" |
66 | 36 |
|
0 commit comments