don’t fail if /etc/nix exists
This commit is contained in:
parent
8e8d14d759
commit
4fc2558faa
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ steps:
|
||||||
- name: Update matrix-media-repo
|
- name: Update matrix-media-repo
|
||||||
image: nixos/nix
|
image: nixos/nix
|
||||||
commands:
|
commands:
|
||||||
- mkdir /etc/nix
|
- mkdir -p /etc/nix
|
||||||
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
|
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
|
||||||
- (cd matrix/matrix-media-repo && ./update.sh)
|
- (cd matrix/matrix-media-repo && ./update.sh)
|
||||||
environment:
|
environment:
|
||||||
|
@ -36,7 +36,7 @@ steps:
|
||||||
- name: Update mautrix-whatsapp
|
- name: Update mautrix-whatsapp
|
||||||
image: nixos/nix
|
image: nixos/nix
|
||||||
commands:
|
commands:
|
||||||
- mkdir /etc/nix
|
- mkdir -p /etc/nix
|
||||||
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
|
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
|
||||||
- (cd matrix/mautrix-whatsapp && ./update.sh)
|
- (cd matrix/mautrix-whatsapp && ./update.sh)
|
||||||
environment:
|
environment:
|
||||||
|
|
Reference in a new issue