mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 18:18:44 +08:00
12 lines
299 B
TOML
12 lines
299 B
TOML
# This is a private repository that sets up my user
|
|
[source]
|
|
git = "https://gitlab.redox-os.org/jackpot51/jeremy.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}/home"
|
|
cp -rv "${COOKBOOK_SOURCE}" "${COOKBOOK_STAGE}/home/user"
|
|
rm -rf "${COOKBOOK_STAGE}/home/user/.git"
|
|
"""
|