File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,6 @@ release_nfpm() {
50
50
51
51
export NFPM_ARCH
52
52
53
- # Code deletes some files from the extension node_modules directory which
54
- # leaves broken symlinks in the corresponding .bin directory. nfpm will fail
55
- # on these broken symlinks so clean them up.
56
- rm -fr " ./release-standalone/lib/vscode/extensions/node_modules/.bin"
57
-
58
53
PKG_FORMAT=" deb"
59
54
NFPM_ARCH=" $( get_nfpm_arch $PKG_FORMAT " $ARCH " ) "
60
55
nfpm_config=" $( envsubst < ./ci/build/nfpm.yaml) "
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ main() {
24
24
25
25
pushd " $RELEASE_PATH "
26
26
npm install --unsafe-perm --omit=dev
27
+ # Code deletes some files from the extension node_modules directory which
28
+ # leaves broken symlinks in the corresponding .bin directory. nfpm will fail
29
+ # on these broken symlinks so clean them up.
30
+ rm -fr " ./lib/vscode/extensions/node_modules/.bin"
27
31
popd
28
32
}
29
33
You can’t perform that action at this time.
0 commit comments