Skip to content

Commit

Permalink
don't globstar
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed May 20, 2024
1 parent 4a3de8b commit fe0bf0f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ jobs:
# Install the package into a temp dir
_tmp="$(mktemp -d)";
mkdir -p "${_tmp}/node_modules/${pkg_name}";
shopt -s globstar;
cp -ar "${targetdir}"/**/* "${_tmp}/node_modules/${pkg_name}/";
shopt -u globstar;
cp -ar "${targetdir}"/* "${_tmp}/node_modules/${pkg_name}/";
cd "${_tmp}/node_modules/${pkg_name}";
npm i;
cd "${_tmp}/";
Expand Down

0 comments on commit fe0bf0f

Please sign in to comment.