2020-05-08 05:48:49 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2022-02-04 23:52:42 +01:00
|
|
|
# This is due to an upstream issue with RHEL7/CentOS 7 comptability with node-argon2
|
|
|
|
# See: https://github.com/cdr/code-server/pull/3422#pullrequestreview-677765057
|
|
|
|
export npm_config_build_from_source=true
|
|
|
|
|
2020-05-08 05:48:49 +02:00
|
|
|
main() {
|
|
|
|
cd "$(dirname "${0}")/../.."
|
2021-09-08 21:05:49 +02:00
|
|
|
|
2020-05-16 16:55:46 +02:00
|
|
|
source ./ci/lib.sh
|
2020-05-08 05:48:49 +02:00
|
|
|
|
2020-05-27 22:39:17 +02:00
|
|
|
rsync "$RELEASE_PATH/" "$RELEASE_PATH-standalone"
|
|
|
|
RELEASE_PATH+=-standalone
|
2020-05-08 05:48:49 +02:00
|
|
|
|
|
|
|
# We cannot find the path to node from $PATH because yarn shims a script to ensure
|
|
|
|
# we use the same version it's using so we instead run a script with yarn that
|
|
|
|
# will print the path to node.
|
|
|
|
local node_path
|
2021-06-28 18:36:55 +02:00
|
|
|
node_path="$(yarn -s node <<< 'console.info(process.execPath)')"
|
2020-05-08 05:48:49 +02:00
|
|
|
|
|
|
|
mkdir -p "$RELEASE_PATH/bin"
|
2021-09-08 21:05:49 +02:00
|
|
|
mkdir -p "$RELEASE_PATH/lib"
|
2020-05-08 05:48:49 +02:00
|
|
|
rsync ./ci/build/code-server.sh "$RELEASE_PATH/bin/code-server"
|
2020-05-22 01:18:50 +02:00
|
|
|
rsync "$node_path" "$RELEASE_PATH/lib/node"
|
2020-05-08 05:48:49 +02:00
|
|
|
|
2020-05-20 15:38:01 +02:00
|
|
|
ln -s "./bin/code-server" "$RELEASE_PATH/code-server"
|
|
|
|
ln -s "./lib/node" "$RELEASE_PATH/node"
|
|
|
|
|
2022-08-04 18:03:28 +02:00
|
|
|
pushd "$RELEASE_PATH"
|
2022-09-06 20:03:27 +02:00
|
|
|
npm install --unsafe-perm --omit=dev
|
2022-08-04 18:03:28 +02:00
|
|
|
popd
|
2020-05-08 05:48:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|