We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7dd55 commit d446c83Copy full SHA for d446c83
scripts/copyPackageJsonFiles.sh
@@ -27,7 +27,8 @@ fi
27
28
copied_package_json_files=0
29
30
- for file in $( find -L . -type d -name node_modules -prune -o -name 'package.json' -print0 | xargs -0 -r -I {}); do
+ #for file in $( find -L . -type d -name node_modules -prune -o -name 'package.json' -print0 | xargs -0 -r -I {}); do
31
+ for file in $( find -L . -type d -name node_modules -prune -o -name 'package.json' -print0 | xargs -0 -r -I {} echo {}); do
32
fileDirectory=$(dirname "${file}")
33
targetDirectory="../${ARTIFACTS_DIRECTORY}/${NPM_PACKAGE_JSON_ARTIFACTS_DIRECTORY}/${fileDirectory}"
34
echo "copyPackageJsonFiles: Debug: Copying ${file} to ${targetDirectory}" # debug logging
0 commit comments