Sha256: ff32ee33cdefa745ab7d15a94e2ca364e8a98d58fa96aa1bdecea6ac625bb62b
Contents?: true
Size: 1.62 KB
Versions: 14
Compression:
Stored size: 1.62 KB
Contents
#!/usr/bin/env zsh _amake() { __amake } __amake() { _arguments \ {--verbose,--no-verbose}'[turns verbose output]' \ {--debug,--no-debug}'[turns debugging output]' \ {--silent,--no-silent}'[tell autoproj to not display anything]' \ {--color,--no-color}'[enables or disables colored display (enabled by default if the terminal supports it)]' \ {--progress,--no-progress}'[enables or disables progress display (enabled by default if the terminal supports it)]' \ {--keep-going,--no-keep-going,-k}'[do not stop on build or checkout errors]' \ {--force,--no-force}'[force reconfiguration-build cycle on the requested packages, even if they do not seem to need it]' \ {--rebuild,--no-rebuild}'[clean and build the requested packages]' \ {--osdeps,--no-osdeps}'[controls whether missing osdeps should be installed. In rebuild mode, also controls whether the osdeps should be reinstalled or not (the default is to reinstall them)]' \ {--deps,--no-deps}'[controls whether the operation should apply to the package''s dependencies as well. -n is a shortcut for --no-deps]' \ {--parallel,-p}'[maximum number of parallel jobs]' \ {--auto-exclude,--no-auto-exclude}'[if true, packages that fail to import will be excluded from the build]' \ {--tool,--no-tool}'[act as a build tool, transparently passing the subcommand''s outputs to STDOUT]' \ {--confirm,--no-confirm}'[--force and --rebuild will ask confirmation if applied to the whole workspace. Use --no-confirm to disable this confirmation]' \ --not'[do not build the packages listed]' \ '*:arg:_autoproj_installed_packages' } compdef _amake amake
Version data entries
14 entries across 14 versions & 1 rubygems