13a15479dSJames Ide#!/usr/bin/env bash
23a15479dSJames Ide
33a15479dSJames Ideset -eo pipefail
43a15479dSJames Ide
53a15479dSJames Idescript_dir="$(dirname "$0")"
63a15479dSJames Ide
73a15479dSJames Ideexport EXPO_NONINTERACTIVE=1
83a15479dSJames Ide
9ec4c554eSEvan Baconecho "Configuring module"
103a15479dSJames Ide"$script_dir/expo-module-clean"
110b87c1dfSStanisław Chmiela"$script_dir/expo-module-configure"
123a15479dSJames Ide"$script_dir/expo-module-build"
13ec4c554eSEvan Bacon
14*a9e9eb76SJames Ideif [[ -d plugin ]]; then
15ec4c554eSEvan Bacon  echo "Configuring plugin"
16*a9e9eb76SJames Ide  "$script_dir/expo-module-clean" plugin
17*a9e9eb76SJames Ide  "$script_dir/expo-module-build" plugin
18ec4c554eSEvan Baconfi
19