mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 00:44:31 +01:00
Fix extensions not being bundled into prebuilt
This commit is contained in:
parent
590f699687
commit
dc333d4321
1 changed files with 2 additions and 1 deletions
|
|
@ -233,8 +233,9 @@ function main() {
|
|||
|
||||
if [[ "${task}" == "package-prebuilt" ]] ; then
|
||||
local archiveName="vscode-${vscodeVersion}.tar.gz"
|
||||
cd "${stagingPath}"
|
||||
cd "${sourcePath}"
|
||||
git reset --hard && git clean -xfd -e '.build/extensions' -e 'node_modules'
|
||||
cd "${stagingPath}"
|
||||
tar -czf "${archiveName}" "${sourceName}"
|
||||
mkdir -p "${releasePath}" && mv -f "${archiveName}" "${releasePath}"
|
||||
exit 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue