Fix incorrect file paths
This commit is contained in:
parent
6b4d709110
commit
bd60293f4c
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
contextRoot="$(mktemp -d)";
|
contextRoot="$(mktemp -d)";
|
||||||
rootHome="$contextRoot/airootfs/root";
|
root="$contextRoot/airootfs";
|
||||||
nixDir="$contextRoot/nix/var/nix/profiles/per-user/root/channels/nixpkgs";
|
rootHome="$root/root";
|
||||||
|
nixDir="$root/nix/var/nix/profiles/per-user/root/channels/nixpkgs";
|
||||||
profileDir="/mnt/archiso-valhalla";
|
profileDir="/mnt/archiso-valhalla";
|
||||||
mkdir -p "$rootHome";
|
mkdir -p "$rootHome";
|
||||||
git clone .. "$rootHome/PortValhalla";
|
git clone .. "$rootHome/PortValhalla";
|
||||||
|
|
Loading…
Reference in a new issue