wrapper: add WRAPPER_PATHS to point ccache and rust to predictable locations

This commit is contained in:
InsanePrawn 2022-08-29 19:52:12 +02:00
parent 94c9a99e2f
commit 035e197f64
2 changed files with 8 additions and 4 deletions

View file

@ -5,10 +5,9 @@ import subprocess
import sys
from config import config
from constants import CHROOT_PATHS
from .wrapper import BaseWrapper
from .wrapper import BaseWrapper, WRAPPER_PATHS
DOCKER_PATHS = CHROOT_PATHS.copy()
DOCKER_PATHS = WRAPPER_PATHS.copy()
def docker_volumes_args(volume_mappings: dict[str, str]) -> list[str]: