Skip to content

Commit

Permalink
remove -o pipefail because bash in sh mode gets angry
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Aug 27, 2024
1 parent eda8873 commit cdc3a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/create_avd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env sh
set -euo pipefail
set -eu

ANDROID_USER_HOME="${ANDROID_USER_HOME:-$HOME/.android}"
DEVICE="${1:-}"
Expand Down
2 changes: 1 addition & 1 deletion bin/install_android_sdk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env sh
set -euo pipefail
set -eu

ANDROID_HOME="${ANDROID_HOME:-$HOME/androidsdk}"
ANDROID_USER_HOME="${ANDROID_USER_HOME:-$HOME/.android}"
Expand Down

0 comments on commit cdc3a85

Please sign in to comment.