diff options
author | Maciej Krüger <mkg20001@gmail.com> | 2021-06-21 09:12:15 +0200 |
---|---|---|
committer | Maciej Krüger <mkg20001@gmail.com> | 2021-06-21 09:13:47 +0200 |
commit | 49fc87f385a8b59a6004049b0edb07bc30459863 (patch) | |
tree | df24ed8a0e018c6ecc188fb0ce35e7cbf5372c30 /python/servo/bootstrap.py | |
parent | 8e48b6fd744bdfb50b9c315191ccb409d673ebf4 (diff) | |
download | servo-49fc87f385a8b59a6004049b0edb07bc30459863.tar.gz servo-49fc87f385a8b59a6004049b0edb07bc30459863.zip |
extend message about nixOS shell
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 21fcd967693..92068f3519b 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -400,8 +400,12 @@ def bootstrap(context, force=False, specific=None): distrib, version = get_linux_distribution() if distrib.lower() == 'nixos': - print('NixOS does not need bootstrap') - print('just run ./mach build') + print('NixOS does not need bootstrap, it will automatically enter a nix-shell') + print('Just run ./mach build') + print('') + print('You will need to run a nix-shell if you are trying to run any of the built binaries') + print('To enter the nix-shell manually use:') + print(' $ nix-shell etc/shell.nix') return context.distro = distrib |