From 508d46d7a1ba9662fee299b41322663997346214 Mon Sep 17 00:00:00 2001 From: tainaCarvalho Date: Thu, 25 Jun 2026 11:48:07 -0300 Subject: [PATCH] BETA-457- add configure --- attendancesystem | 1 + install.sh | 6 ++++++ 2 files changed, 7 insertions(+) create mode 160000 attendancesystem diff --git a/attendancesystem b/attendancesystem new file mode 160000 index 0000000..27f03cf --- /dev/null +++ b/attendancesystem @@ -0,0 +1 @@ +Subproject commit 27f03cf6f3bb442e8e5159ffd419d1a95f6567ef diff --git a/install.sh b/install.sh index 4131248..b2b1dae 100755 --- a/install.sh +++ b/install.sh @@ -259,6 +259,12 @@ clone_repo() { print_ok "Arquivos baixados em: $(pwd)/${INSTALL_DIR}" fi + if [ -f "$INSTALL_DIR/configure-host.sh" ]; then + cp "$INSTALL_DIR/configure-host.sh" ./configure-host.sh + chmod +x ./configure-host.sh + print_ok "configure-host.sh disponível neste diretório" + fi + ENV_FILE="$INSTALL_DIR/.env.prod" }