aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap.py
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2021-06-21 09:12:15 +0200
committerMaciej Krüger <mkg20001@gmail.com>2021-06-21 09:13:47 +0200
commit49fc87f385a8b59a6004049b0edb07bc30459863 (patch)
treedf24ed8a0e018c6ecc188fb0ce35e7cbf5372c30 /python/servo/bootstrap.py
parent8e48b6fd744bdfb50b9c315191ccb409d673ebf4 (diff)
downloadservo-49fc87f385a8b59a6004049b0edb07bc30459863.tar.gz
servo-49fc87f385a8b59a6004049b0edb07bc30459863.zip
extend message about nixOS shell
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r--python/servo/bootstrap.py8
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