Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
billywhizz committed Jan 13, 2021
1 parent e0ce0a3 commit 477d0a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CC=g++
RELEASE=0.0.17
RELEASE=0.0.18
INSTALL=/usr/local/bin
LIBS=lib/loop.js lib/path.js lib/fs.js lib/process.js lib/build.js lib/repl.js lib/acorn.js lib/configure.js
MODULES=modules/net/net.o modules/epoll/epoll.o modules/fs/fs.o modules/sys/sys.o modules/vm/vm.o
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Currently working on modern linux (debian/ubuntu and alpine tested) on x86_64

```bash
# download and run the build script
sh -c "$(curl -sSL https://raw.githubusercontent.com/just-js/just/0.0.17/install.sh)"
sh -c "$(curl -sSL https://raw.githubusercontent.com/just-js/just/0.0.18/install.sh)"
# install just binary to /usr/local/bin
make -C just-0.0.17 install
make -C just-0.0.18 install
# export the just home directory
export JUST_HOME=$(pwd)/just-0.0.17
export JUST_HOME=$(pwd)/just-0.0.18
# if you don't want to install, add JUST_HOME to SPATH
export PATH=$PATH:$JUST_HOME
# run a shell
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
curl -L -o just.tar.gz https://github.com/just-js/just/archive/0.0.6.tar.gz
curl -L -o just.tar.gz https://github.com/just-js/just/archive/0.0.18.tar.gz
tar -zxvf just.tar.gz
cd just-0.0.6
cd just-0.0.18
make runtime-static

0 comments on commit 477d0a2

Please sign in to comment.