Fixed static file copy not copying hidden files

This commit is contained in:
Yuki Joou 2023-08-18 16:55:47 +02:00
parent b0338b79b5
commit 9f0dbfc41c

View file

@ -83,6 +83,6 @@ done;
echo 'Generation: done!' echo 'Generation: done!'
[[ -e $STATIC_RESOURCES_PATH/ ]] && (echo "Copying static assets..." && cp -r $STATIC_RESOURCES_PATH/* $OUTPUT_PATH) [[ -e $STATIC_RESOURCES_PATH/ ]] && (echo "Copying static assets..." && find $STATIC_RESOURCES_PATH/ -maxdepth 1 -exec cp -r {} $OUTPUT_PATH/ ';')
echo "Check $OUTPUT_PATH/ for the processed files" echo "Check $OUTPUT_PATH/ for the processed files"