Skip to content

Commit 0c50d46

Browse files
authored
Include wget in dependencies (#4183)
Install `wget` as part of the dependencies as it's needed for downloading kissat (`scripts/setup/install_kissat.sh`). Without that, users may run into an error: ``` + wget -O rel-4.0.1.tar.gz https://github.com/arminbiere/kissat/archive/refs/tags/rel-4.0.1.tar.gz /Users/foo/git/kani/scripts/setup/macos-14/../install_kissat.sh: line 33: wget: command not found ``` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 79fe8af commit 0c50d46

5 files changed

Lines changed: 2 additions & 5 deletions

File tree

scripts/setup/al2/install_deps.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ DEPS=(
1313
cmake3
1414
gcc10-c++
1515
git
16-
wget
1716
)
1817

1918
set -x

scripts/setup/install_kissat.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ URL="https://github.com/arminbiere/kissat/archive/refs/tags/$FILE"
3030

3131
set -x
3232

33-
wget -O "$FILE" "$URL"
33+
curl -L --remote-name "$URL"
3434
tar -xvzf $FILE
3535
DIR_NAME="kissat-rel-${KISSAT_VERSION}"
3636
cd $DIR_NAME

scripts/setup/ubuntu-20.04/install_deps.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ DEPS=(
1717
gpg-agent
1818
make
1919
patch
20-
wget
2120
zlib1g
2221
zlib1g-dev
2322
)

scripts/setup/ubuntu/install_cbmc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ then
2222

2323
set -x
2424

25-
wget -O "$FILE" "$URL"
25+
curl -L --remote-name "$URL"
2626
sudo dpkg -i "$FILE"
2727
cbmc --version
2828
rm $FILE

scripts/setup/ubuntu/install_deps.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ DEPS=(
1616
gpg-agent
1717
make
1818
patch
19-
wget
2019
zlib1g
2120
zlib1g-dev
2221
)

0 commit comments

Comments
 (0)