Closed jfrancos closed 3 years ago
shopt -s dotglob allows * to match hidden files. Without this, hidden files won't get copied when merging.
shopt -s dotglob
*
shopt appears to be a builtin for sh on mac but not for sh on linux.
shopt
sh
Some options:
#!/bin/bash
create-snowpack-app
got around the need for shopt
shopt -s dotglob
allows*
to match hidden files. Without this, hidden files won't get copied when merging.shopt
appears to be a builtin forsh
on mac but not forsh
on linux.Some options:
#!/bin/bash
create-snowpack-app