Skip to content

Commit 65668b6

Browse files
aws-pangestugoel-akas
authored andcommitted
Copy resources before creating tarball
Previously tarballs didn't have the updated resources
1 parent ce786e0 commit 65668b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,17 @@ sh ${PROJ_ROOT}/scripts/postinstall.sh
7373
printf "\n======== Deleting vscode/node_modules ========\n"
7474
find "${PROJ_ROOT}/vscode" -name "node_modules" -type d -prune -exec rm -rf '{}' +
7575

76+
# Copy resources
77+
printf "\n======== Copy resources ========\n"
78+
${PROJ_ROOT}/scripts/copy-resources.sh
79+
7680
# Create tarball
7781
if [ "$CREATE_TARBALL" = true ]; then
7882
# Build tarball for conda feedstock from vscode dir
7983
printf "\n======== Build Tarball for Conda Feedstock ========\n"
8084
bash ${PROJ_ROOT}/scripts/create_code_editor_tarball.sh -v ${VERSION}
8185
fi
8286

83-
# Copy resources
84-
printf "\n======== Copy resources ========\n"
85-
${PROJ_ROOT}/scripts/copy-resources.sh
86-
8787
# Copy patched files to patches-vscode
8888
cp -R vscode/* patched-vscode/
8989

0 commit comments

Comments
 (0)