Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dev/lenient-npm.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/usr/bin/env bash
set -eux


if [ $# -gt 0 ] && [ "$1" == "install" ]; then
/usr/local/bin/actual-npm "$@" || true
/usr/local/bin/actual-npm "$@" || echo "scip-typescript: ignoring npm install failure, will try to auto-index the project with partial dependency information"
else
/usr/local/bin/actual-npm "$@"
fi
2 changes: 1 addition & 1 deletion dev/lenient-yarn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eux

if [ $# -gt 1 ] && [ "$1" == "install" ]; then
/usr/local/bin/actual-yarn "$@" || true
/usr/local/bin/actual-yarn "$@" || echo "scip-typescript: ignoring yarn install failure, will try to auto-index the project with partial dependency information"
else
/usr/local/bin/actual-yarn "$@"
fi