Archived
1
0

Rename container and release-container to images and release-image

This commit is contained in:
Anmol Sethi
2020-06-03 12:07:42 -04:00
parent 11d7932968
commit bdb670e852
14 changed files with 41 additions and 21 deletions

View File

@ -5,7 +5,7 @@ main() {
cd "$(dirname "$0")/../.."
source ./ci/lib.sh
./ci/release-container/build.sh
./ci/release-image/build.sh
mkdir -p release-images
docker save "codercom/code-server-$ARCH:$VERSION" > "release-images/code-server-$ARCH-$VERSION.tar"

View File

@ -4,7 +4,7 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
if [[ "$OSTYPE" == darwin* ]]; then
if [[ $OSTYPE == darwin* ]]; then
curl -L https://nodejs.org/dist/v14.4.0/node-v14.4.0-darwin-x64.tar.gz | tar -xz
PATH="$PATH:node-v14.4.0-darwin-x64/bin"
fi