From d881995df89089a0b63cbe8a4c6157de5faae1dd Mon Sep 17 00:00:00 2001 From: Ollama Date: Fri, 15 May 2026 11:01:13 +0200 Subject: [PATCH] fix: copy hidden files from extraction directory Hidden files like .env were not being copied because shell glob * doesn't match hidden files. Use 'ospos-temp/.' to copy all files. --- scripts/install-ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-ubuntu.sh b/scripts/install-ubuntu.sh index e808dcafc..7e322e11f 100644 --- a/scripts/install-ubuntu.sh +++ b/scripts/install-ubuntu.sh @@ -142,7 +142,7 @@ fi unzip -q ospos.zip -d ospos-temp mkdir -p ${OSPOS_DIR} -cp -r ospos-temp/* ${OSPOS_DIR}/ +cp -r ospos-temp/. ${OSPOS_DIR}/ rm -rf ospos-temp ospos.zip echo -e "${COLOR_GREEN}Downloaded OSPOS ${OSPOS_VERSION}${COLOR_RESET}"