Skip to content

Commit 6ea2640

Browse files
committed
Remove set -euo pipefail toa void erros on mac80211_hwsim_WiFiChallenge
1 parent e7a8c9e commit 6ea2640

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

APs/config/ns-inet.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99

1010
# Install mac80211_hwsim_WiFiChallenge if missing
1111
cd /root/mac80211_hwsim_WiFiChallenge
12-
sudo bash install.sh
12+
sudo bash install.sh || true
1313

1414
# Returns all available interfaces, except "lo" and "veth*".
1515
available_interfaces()

APs/mac80211_hwsim/dragondrain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -euo pipefail
2+
#set -euo pipefail
33

44
usage() {
55
cat <<'EOF'

APs/mac80211_hwsim/patch80211.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
set -euo pipefail
2+
#set -euo pipefail
33

44
DEST="./"
55
mkdir -p "$DEST"

0 commit comments

Comments
 (0)