This is an automated email from the ASF dual-hosted git repository.

jamesfredley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/grails-static-website.git


The following commit(s) were added to refs/heads/master by this push:
     new bc5c1464e25 Fix cp command to copy hidden files in publish script
bc5c1464e25 is described below

commit bc5c1464e25b322f43761924d46a1b9e610c807f
Author: James Fredley <[email protected]>
AuthorDate: Sat Oct 11 19:33:53 2025 -0400

    Fix cp command to copy hidden files in publish script
    
    Updated the cp command in publish.sh to use '../build/dist/. .' instead of 
'../build/dist/* .', ensuring that hidden files are also copied during the 
publish process.
---
 publish.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/publish.sh b/publish.sh
index 2f298d79407..9f190c79e71 100755
--- a/publish.sh
+++ b/publish.sh
@@ -29,7 +29,7 @@ fi
 
 git clone https://${GH_TOKEN}@github.com/${GITHUB_SLUG}.git -b ${GH_BRANCH} 
${GH_BRANCH} --single-branch --depth 1 > /dev/null
 cd ${GH_BRANCH}
-cp -rv ../build/dist/* .
+cp -rv ../build/dist/. .
 if git diff --quiet; then
   echo "No changes in MAIN Website"
 else

Reply via email to