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.
This commit is contained in:
Ollama
2026-05-15 11:01:13 +02:00
committed by jekkos
parent d792139b5f
commit d881995df8

View File

@@ -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}"