mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
guix-install.sh: Don't extract the binary ‘.’.
* etc/guix-install.sh (sys_create_store): Strip the first tar file name component.
This commit is contained in:
parent
67c276a870
commit
ff23e34f56
1 changed files with 2 additions and 1 deletions
|
@ -363,7 +363,8 @@ sys_create_store()
|
|||
|
||||
cd "$tmp_path"
|
||||
_msg "${INF}Installing /var/guix and /gnu..."
|
||||
tar --extract --file "$pkg" -C /
|
||||
# Strip (skip) the leading ‘.’ component, which fails on read-only ‘/’.
|
||||
tar --extract --strip-components=1 --file "$pkg" -C /
|
||||
|
||||
_msg "${INF}Linking the root user's profile"
|
||||
mkdir -p ~root/.config/guix
|
||||
|
|
Loading…
Reference in a new issue