aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/minit.py
diff options
context:
space:
mode:
authorMichael <michaelbrockus@gmail.com>2020-03-01 15:05:16 -0800
committerXavier Claessens <xclaesse@gmail.com>2020-03-02 13:50:58 -0500
commit79d04cebf7ed0f2d7f8b09578f3829cd5dd0395e (patch)
treed86fa990ee42746017a0a6dfb2dbf63510c89fea /mesonbuild/minit.py
parent2f080b1f2e9ca076d04af8c67d18004970a03658 (diff)
downloadmeson-79d04cebf7ed0f2d7f8b09578f3829cd5dd0395e.zip
meson-79d04cebf7ed0f2d7f8b09578f3829cd5dd0395e.tar.gz
meson-79d04cebf7ed0f2d7f8b09578f3829cd5dd0395e.tar.bz2
fix typo
Diffstat (limited to 'mesonbuild/minit.py')
-rw-r--r--mesonbuild/minit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/minit.py b/mesonbuild/minit.py
index 2cb225c..e861290 100644
--- a/mesonbuild/minit.py
+++ b/mesonbuild/minit.py
@@ -228,7 +228,7 @@ def run(options) -> int:
Here we generate the new Meson sample project.
'''
if not Path(options.wd).exists():
- sys.exit('Project source root directory not found. Run this command in build directory root.')
+ sys.exit('Project source root directory not found. Run this command in source directory root.')
os.chdir(options.wd)
if not glob('*'):