mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 16:26:40 +03:00
9 lines
203 B
Bash
Executable File
9 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
echo "----- install prerequisite packages -----"
|
|
brew install curl pkg-config squid
|
|
sudo squid -k shutdown || true
|
|
sudo rm -v /dev/shm/squid*.shm >/dev/null 2>&1 || true
|
|
|