Skip to content

Commit 614bbf1

Browse files
committed
Delete deprecated interactive option.
1 parent db1a193 commit 614bbf1

29 files changed

+7
-440
lines changed

Cargo.lock

Lines changed: 0 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/install_prerequisites_alpine.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ apk update --quiet
66
apk add --quiet \
77
bash \
88
sudo \
9-
expect \
109
netcat-openbsd \
1110
curl \
1211
curl-dev \

bin/install_prerequisites_archlinux.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pacman -Syu --noconfirm \
66
bash \
77
sudo \
88
gcc \
9-
expect \
109
openssl \
1110
python3 \
1211
icu \

bin/install_prerequisites_debian.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ fi
1010
sudo apt-get update
1111
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
1212
bash \
13-
expect \
1413
curl \
1514
net-tools \
1615
g++-aarch64-linux-gnu \

bin/install_prerequisites_fedora.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ echo "----- install prerequisite packages -----"
55
yum install -y \
66
bash \
77
sudo \
8-
expect \
98
which \
109
procps \
1110
gcc \

bin/install_prerequisites_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ set -Eeuo pipefail
44
echo "----- install prerequisite packages -----"
55
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=true
66
brew update
7-
brew install bash expect squid jq
7+
brew install bash squid jq
88
sudo squid -k shutdown || true
99
sudo rm -v /dev/shm/squid*.shm >/dev/null 2>&1 || true

bin/install_prerequisites_ubuntu.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ fi
1010
sudo apt-get update
1111
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
1212
bash \
13-
expect \
1413
curl \
1514
net-tools \
1615
build-essential \

completions/_hurl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ _hurl() {
4343
'--ignore-asserts[Ignore asserts defined in the Hurl file]' \
4444
'(-i --include)'{-i,--include}'[Include the HTTP headers in the output]' \
4545
'(-k --insecure)'{-k,--insecure}'[Allow insecure SSL connections]' \
46-
'--interactive[Turn on interactive mode]' \
4746
'(-4 --ipv4)'{-4,--ipv4}'[Tell Hurl to use IPv4 addresses only when resolving host names, and not for example try IPv6]' \
4847
'(-6 --ipv6)'{-6,--ipv6}'[Tell Hurl to use IPv6 addresses only when resolving host names, and not for example try IPv4]' \
4948
'--jobs[Maximum number of parallel jobs, 0 to disable parallel execution]: :' \

completions/_hurl.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ Register-ArgumentCompleter -Native -CommandName 'hurl' -ScriptBlock {
4848
[CompletionResult]::new('--ignore-asserts', 'ignore-asserts', [CompletionResultType]::ParameterName, 'Ignore asserts defined in the Hurl file')
4949
[CompletionResult]::new('--include', 'include', [CompletionResultType]::ParameterName, 'Include the HTTP headers in the output')
5050
[CompletionResult]::new('--insecure', 'insecure', [CompletionResultType]::ParameterName, 'Allow insecure SSL connections')
51-
[CompletionResult]::new('--interactive', 'interactive', [CompletionResultType]::ParameterName, 'Turn on interactive mode')
5251
[CompletionResult]::new('--ipv4', 'ipv4', [CompletionResultType]::ParameterName, 'Tell Hurl to use IPv4 addresses only when resolving host names, and not for example try IPv6')
5352
[CompletionResult]::new('--ipv6', 'ipv6', [CompletionResultType]::ParameterName, 'Tell Hurl to use IPv6 addresses only when resolving host names, and not for example try IPv4')
5453
[CompletionResult]::new('--jobs', 'jobs', [CompletionResultType]::ParameterName, 'Maximum number of parallel jobs, 0 to disable parallel execution')

completions/hurl.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _hurl()
44
cur="${COMP_WORDS[COMP_CWORD]}"
55

66
if [[ $cur == -* ]]; then
7-
COMPREPLY=($(compgen -W '--aws-sigv4 --cacert --cert --key --color --compressed --connect-timeout --connect-to --continue-on-error --cookie --cookie-jar --curl --delay --digest --error-format --file-root --location --location-trusted --from-entry --glob --header --http1.0 --http1.1 --http2 --http3 --ignore-asserts --include --insecure --interactive --ipv4 --ipv6 --jobs --json --limit-rate --max-filesize --max-redirs --max-time --negotiate --netrc --netrc-file --netrc-optional --no-color --no-cookie-store --no-output --no-pretty --no-proxy --ntlm --output --parallel --path-as-is --pinnedpubkey --pretty --progress-bar --proxy --repeat --report-html --report-json --report-junit --report-tap --resolve --retry --retry-interval --secret --secrets-file --ssl-no-revoke --test --to-entry --unix-socket --user --user-agent --variable --variables-file --verbose --verbosity --very-verbose --help --version' -- "$cur"))
7+
COMPREPLY=($(compgen -W '--aws-sigv4 --cacert --cert --key --color --compressed --connect-timeout --connect-to --continue-on-error --cookie --cookie-jar --curl --delay --digest --error-format --file-root --location --location-trusted --from-entry --glob --header --http1.0 --http1.1 --http2 --http3 --ignore-asserts --include --insecure --ipv4 --ipv6 --jobs --json --limit-rate --max-filesize --max-redirs --max-time --negotiate --netrc --netrc-file --netrc-optional --no-color --no-cookie-store --no-output --no-pretty --no-proxy --ntlm --output --parallel --path-as-is --pinnedpubkey --pretty --progress-bar --proxy --repeat --report-html --report-json --report-junit --report-tap --resolve --retry --retry-interval --secret --secrets-file --ssl-no-revoke --test --to-entry --unix-socket --user --user-agent --variable --variables-file --verbose --verbosity --very-verbose --help --version' -- "$cur"))
88
return
99
fi
1010
# Generate filenames by default

0 commit comments

Comments
 (0)