We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f67827 commit fad704eCopy full SHA for fad704e
install.sh
@@ -27,7 +27,7 @@
27
28
set -euo pipefail
29
30
-version=0.0.14 # TODO integrate with releases.
+version=0.0.15 # TODO integrate with releases.
31
32
settle_base=$(pwd)
33
main.go
@@ -42,6 +42,9 @@ func mainE(ctx context.Context) error {
42
if command != "" && command != "ensure" {
43
return fmt.Errorf("unknown subcommand %s", command)
44
}
45
+ if err := ensure.Parse(args); err != nil {
46
+ return fmt.Errorf("parse args: %w", err)
47
+ }
48
return ensure.Exec(ctx, args)
49
},
50
0 commit comments