1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-18 19:07:19 +03:00

Loop until Nix stops segfaulting

This commit is contained in:
Nicolas Mattia 2019-06-16 08:25:06 +00:00
parent 24ace0e198
commit 8434979b84

View File

@ -32,7 +32,11 @@ jobs:
- run:
name: Install Nix
command: |
bash <(curl https://nixos.org/nix/install)
until bash <(curl https://nixos.org/nix/install)
do
echo "Nix install failed, retrying"
rm -rf /nix
done
echo '. /home/circleci/.nix-profile/etc/profile.d/nix.sh' >> $BASH_ENV
- checkout