Skip to content

Commit

Permalink
Different ls options
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte committed Aug 11, 2024
1 parent eb03d81 commit 15a8105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -308,15 +308,15 @@ echo ""
if test -f "${OUTPUT}package.json"; then
echo "✔️ standalone package found at ${OUTPUT}package.json"
echo ""
ls -aln1 "${OUTPUT}"
ls -al "${OUTPUT}"
echo ""

if test -d "${OUTPUT}node_modules/.pnpm"; then
# echo "Found .pnpm hoisted packages"
# ls -aln1 "${OUTPUT}node_modules"
# echo ""
echo "Found .pnpm hoisted binaries"
ls -aln1 "${OUTPUT}node_modules/.bin"
ls -al "${OUTPUT}node_modules/.bin"
else
echo ".pnpm hoisted packages not found"
cd "${COREPACK_ROOT_DIR}" && corepack pnpm install --offline --frozen-lockfile
Expand Down

0 comments on commit 15a8105

Please sign in to comment.