Skip to content

Commit 1d781f0

Browse files
committed
Improvements
1 parent 639407f commit 1d781f0

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/options.nim

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ USAGE:
3333
rad bootstrap [ COMMAND ]
3434
3535
COMMANDS:
36-
clean Clean bootstrap cache
37-
help Show help message
38-
1, stage1 Bootstrap stage 1 (toolchain)
39-
2, stage2 Bootstrap stage 2 (cross)
40-
3, stage3 Bootstrap stage 3 (native)"""
36+
clean Clean bootstrap cache
37+
help Show help message
38+
1, toolchain Bootstrap stage 1 (toolchain)
39+
2, cross Bootstrap stage 2 (cross)
40+
3, native Bootstrap stage 3 (native)"""
4141

4242
const version =
4343
"""
@@ -74,17 +74,17 @@ Copyright © 2018-2026 Firas Khana"""
7474
echo "clean complete"
7575
of "help", "--help":
7676
echo helpBootstrap
77-
of "1", "stage1", "toolchain":
77+
of "1", "toolchain":
7878
bootstrapToolchain()
7979

8080
echo ""
8181
echo "stage 1 (toolchain) complete"
82-
of "2", "stage2", "cross":
82+
of "2", "cross":
8383
bootstrapCross()
8484

8585
echo ""
8686
echo "stage 2 (cross) complete"
87-
of "3", "stage3", "native":
87+
of "3", "native":
8888
buildPackages(parseInfo($native).run.split(), true)
8989

9090
echo ""

0 commit comments

Comments
 (0)