[Merge] ~3v1n0/ubuntu-dev-tools:ccache-support into ubuntu-dev-tools:master
Marco Trevisan (TreviƱo)
mail at 3v1n0.net
Tue Jun 15 00:25:30 UTC 2021
Diff comments:
> diff --git a/mk-sbuild b/mk-sbuild
> index 75abfda..8daf71b 100755
> --- a/mk-sbuild
> +++ b/mk-sbuild
> @@ -103,19 +115,48 @@ function usage()
> if [ -z "$1" ]; then
> usage
> fi
> -OPTS=`getopt -o 'h' --long "help,debug,skip-updates,skip-security,skip-proposed,skip-eatmydata,arch:,name:,source-template:,debootstrap-mirror:,debootstrap-include:,debootstrap-exclude:,debootstrap-opts:,debootstrap-proxy:,debootstrap-no-check-gpg,debootstrap-keyring:,personality:,distro:,vg:,type:,target:" -- "$@"`
> +supported_options=(
> + help
> + debug
> + skip-updates
> + skip-security
> + skip-proposed
> + skip-eatmydata
> + ccache,
Yeah, good catch, fixed.
> + arch:
> + name:
> + source-template:
> + debootstrap-mirror:
> + debootstrap-include:
> + debootstrap-exclude:
> + debootstrap-opts:
> + debootstrap-proxy:
> + debootstrap-no-check-gpg
> + debootstrap-keyring:
> + personality:
> + distro:
> + vg:
> + type:
> + target:
> + ccache-dir:
> + ccache-size:
> +)
> +OPTS=$(getopt -o 'h' --long "$(IFS=, && echo "${supported_options[*]}")" -- "$@")
> eval set -- "$OPTS"
>
> VG=""
> DISTRO=""
> +COMMAND_PREFIX=""
> name=""
> proxy="_unset_"
> DEBOOTSTRAP_NO_CHECK_GPG=0
> EATMYDATA=1
> +CCACHE=0
>
> while :; do
> case "$1" in
> --debug)
> + DEBUG=1
> set -x
> shift
> ;;
--
https://code.launchpad.net/~3v1n0/ubuntu-dev-tools/+git/ubuntu-dev-tools/+merge/401817
Your team Ubuntu Development Team is subscribed to branch ubuntu-dev-tools:master.
More information about the Ubuntu-reviews
mailing list