mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
8216403729
This essentially serves as a cache of sources because otherwise all the downloaded source disappears when the container exits.
4 lines
266 B
Bash
Executable File
4 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
mkdir -p $1
|
|
podman run -it --rm --user=$(id -un) --workdir="/home/$(id -un)" --entrypoint="/bin/bash" -v $1:/home/$(id -un)/DivestOS/Builds -v divestos_ccache:/home/$(id -un)/.ccache -v divestos_repo:/home/$(id -un)/DivestOS android-build-fedora
|