diff options
author | Karel Kočí <cynerd@email.cz> | 2023-03-23 21:31:09 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-03-23 21:31:09 +0100 |
commit | c2f1e5b695ec28a58a94af2b48a1ef8bbc238964 (patch) | |
tree | de1474abd2a984b8b150f83a445f6dae820f0c41 | |
parent | 4e33d9f26e0544ff23963fda389559f6c7c78109 (diff) | |
download | shellrc-c2f1e5b695ec28a58a94af2b48a1ef8bbc238964.tar.gz shellrc-c2f1e5b695ec28a58a94af2b48a1ef8bbc238964.tar.bz2 shellrc-c2f1e5b695ec28a58a94af2b48a1ef8bbc238964.zip |
Add mpurge and mupdate
These are for Meson subproject management.
-rw-r--r-- | shellrc.d/dev | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shellrc.d/dev b/shellrc.d/dev index fe365e3..4167c54 100644 --- a/shellrc.d/dev +++ b/shellrc.d/dev @@ -41,6 +41,14 @@ mdist() { && meson dist -C build --formats xztar,gztar,zip "$@" } +mupdate() { + meson subprojects update +} + +mpurge() { + meson subprojects purge +} + fi |