DomoApps / starter-kit

This is an advanced Domo App project starter (boilerplate).
MIT License
20 stars 9 forks source link

fix(package.json): fix `cp -r` command to work properly on linux environments #62

Closed jpumford closed 7 years ago

jpumford commented 7 years ago

This addresses #60

the cp -r command worked inconsistently between osx and linux. cp -r on osx will copy the contents of the first argument (the source directory) into the output directory. On linux, cp -r would copy the source folder into the destination folder. A blob is used to copy all (except dotfiles) from the domo folder to the dist folder

@sldavidson @andrewjensen

sldavidson commented 7 years ago

+1

hut8 commented 7 years ago

Thanks very much for this!

hut8 commented 7 years ago

Ported change to advanced-sample-app: https://github.com/DomoApps/advanced-sample-app/pull/24