File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ source $rootdir/bin/utils.sh
9
9
new_version=$( cat package.json | jq ' .version' --raw-output)
10
10
echo " Deploying $new_version to NPM"
11
11
12
- rm -rf node_modules/
13
12
# we need to do this so that eslint doesn't try to stat the directory
14
13
# and blow up on too many symlinks
15
14
rm -rf examples/agent/node_modules/
16
15
rm -rf examples/ecs-firelens/node_modules/
16
+ rm -rf examples/eks/node_modules/
17
17
rm -rf examples/lambda/src/node_modules/
18
18
rm -rf examples/testing/node_modules/
19
19
Original file line number Diff line number Diff line change @@ -10,14 +10,3 @@ function check_exit() {
10
10
exit $last_exit_code ;
11
11
fi
12
12
}
13
-
14
- function confirm() {
15
- echo " Confirm [Yy]?"
16
- read REPLY" "
17
- if [[ $REPLY =~ ^[Yy]$ ]]
18
- then
19
- # do dangerous stuff
20
- else
21
- exit 1
22
- fi
23
- }
You can’t perform that action at this time.
0 commit comments