@@ -28,13 +28,14 @@ main() {
2828}
2929
3030bundle_code_server () {
31- rsync out dist " $RELEASE_PATH "
31+ rsync out " $RELEASE_PATH "
3232
3333 # For source maps and images.
3434 mkdir -p " $RELEASE_PATH /src/browser"
3535 rsync src/browser/media/ " $RELEASE_PATH /src/browser/media"
3636 mkdir -p " $RELEASE_PATH /src/browser/pages"
3737 rsync src/browser/pages/* .html " $RELEASE_PATH /src/browser/pages"
38+ rsync src/browser/pages/* .css " $RELEASE_PATH /src/browser/pages"
3839 rsync src/browser/robots.txt " $RELEASE_PATH /src/browser"
3940
4041 # Add typings for plugins
@@ -43,15 +44,15 @@ bundle_code_server() {
4344
4445 # Adds the commit to package.json
4546 jq --slurp ' .[0] * .[1]' package.json <(
46- cat << EOF
47+ cat << EOF
4748 {
4849 "commit": "$( git rev-parse HEAD) ",
4950 "scripts": {
5051 "postinstall": "./postinstall.sh"
5152 }
5253 }
5354EOF
54- ) > " $RELEASE_PATH /package.json"
55+ ) > " $RELEASE_PATH /package.json"
5556 rsync yarn.lock " $RELEASE_PATH "
5657 rsync ci/build/npm-postinstall.sh " $RELEASE_PATH /postinstall.sh"
5758
@@ -83,18 +84,18 @@ bundle_vscode() {
8384
8485 # Adds the commit and date to product.json
8586 jq --slurp ' .[0] * .[1]' " $VSCODE_SRC_PATH /product.json" <(
86- cat << EOF
87+ cat << EOF
8788 {
8889 "commit": "$( git rev-parse HEAD) ",
8990 "date": $( jq -n ' now | todate' )
9091 }
9192EOF
92- ) > " $VSCODE_OUT_PATH /product.json"
93+ ) > " $VSCODE_OUT_PATH /product.json"
9394
9495 # We remove the scripts field so that later on we can run
9596 # yarn to fetch node_modules if necessary without build scripts running.
9697 # We cannot use --no-scripts because we still want dependent package scripts to run.
97- jq ' del(.scripts)' < " $VSCODE_SRC_PATH /package.json" > " $VSCODE_OUT_PATH /package.json"
98+ jq ' del(.scripts)' < " $VSCODE_SRC_PATH /package.json" > " $VSCODE_OUT_PATH /package.json"
9899
99100 pushd " $VSCODE_OUT_PATH "
100101 symlink_asar
0 commit comments