I'm trying to run the following command:
webpack &&
cp -r i18n build/i18n &&
cp -r core build/core &&
cp -r views build/views &&
cp -r styles build/styles &&
find ./components -iname \"*.html\" -exec rsync -R '{}' ./build/ \\;
and it is returning following error message:
find: missing argument to `-exec'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! tracker-capture-app@26.0.10 build: `webpack && cp -r i18n
build/i18n && cp -r core build/core && cp -r views build/views && cp -r
styles build/styles && find ./components -iname "*.html" -exec echo '{}'
./build/ \;`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the tracker-capture-app@26.0.10 build script 'webpack &&
cp -r i18n build/i18n && cp -r core build/core && cp -r views build/views &&
cp -r styles build/styles && find ./components -iname "*.html" -exec echo
'{}' ./build/ \;'.
\"*.html\"
is over-escaped as well – steeldriver Apr 18 '17 at 17:17code formating
. – wjandrea Apr 21 '17 at 16:10