tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
github-runner: use fake HOME in dependency fetcher
David McFarland
3 years ago
858da95d
4c861dd2
+1
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
continuous-integration
github-runner
default.nix
+1
pkgs/development/tools/continuous-integration/github-runner/default.nix
···
333
333
334
334
printf "\n* Setup workdir\n"
335
335
workdir="$(mktemp -d /tmp/${pname}.XXX)"
336
336
+
HOME="$workdir"/.fake-home
336
337
cp -rT "${src}" "$workdir"
337
338
chmod -R +w "$workdir"
338
339
trap 'rm -rf "$workdir"' EXIT