From ddb65a9e6d687eb1af42ad06998d8b5c0746e790 Mon Sep 17 00:00:00 2001 From: Autumn Date: Thu, 7 May 2026 08:06:14 +0100 Subject: [nunvm/list] added ability to list versions --- src/bootstrap.nu | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/bootstrap.nu (limited to 'src/bootstrap.nu') diff --git a/src/bootstrap.nu b/src/bootstrap.nu new file mode 100644 index 0000000..0137759 --- /dev/null +++ b/src/bootstrap.nu @@ -0,0 +1,14 @@ +# +# ~~~ bootstraps nunvm +# + +# +# ~~~ main bootstrap function +export def main []: nothing -> nothing { + + # nunvm dir + let NUNVM_DIR = $"($env.HOME)/.nunvm" # todo: allow customising this + + mkdir $NUNVM_DIR + mkdir $"($NUNVM_DIR)/versions" +} -- cgit v1.3