Fixed static file copy not copying hidden files
This commit is contained in:
parent
b0338b79b5
commit
9f0dbfc41c
1 changed files with 1 additions and 1 deletions
|
@ -83,6 +83,6 @@ 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"
|
||||
|
|
Loading…
Reference in a new issue