mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-22 12:01:27 +00:00
exclude dot files when extracting top-level flake
This commit is contained in:
parent
73b5863968
commit
bc0f59695c
|
@ -107,7 +107,8 @@ echo '// { users.users.root.hashedPassword = "$6$I8xOgBRfitytj331$WZzyJbABCY8LZ4
|
||||||
|
|
||||||
setupConf() {
|
setupConf() {
|
||||||
mkdir -p ${LOCAL_FLAKE_DIR}
|
mkdir -p ${LOCAL_FLAKE_DIR}
|
||||||
if ! curl "${CONFIG_URL}" | tar -xz -C ${LOCAL_FLAKE_DIR} --strip-components=1
|
if ! curl "${CONFIG_URL}" \
|
||||||
|
| tar -xz -C ${LOCAL_FLAKE_DIR} --strip-components=1 --exclude=".*"
|
||||||
then
|
then
|
||||||
echo "Error downloading/extracting top level flake configuration!"
|
echo "Error downloading/extracting top level flake configuration!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue