Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
billywhizz committed Aug 15, 2021
1 parent 4b89ca0 commit 83d680a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 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.1.2
RELEASE=0.1.3
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.1.2/install.sh)"
sh -c "$(curl -sSL https://raw.githubusercontent.com/just-js/just/current/install.sh)"
# install just binary to /usr/local/bin
make -C just-0.1.2 install
make -C just install
# export the just home directory
export JUST_HOME=$(pwd)/just-0.1.2
export JUST_HOME=$(pwd)/just
export JUST_TARGET=$JUST_HOME
# if you don't want to install, add JUST_HOME to SPATH
export PATH=$PATH:$JUST_HOME
Expand Down
7 changes: 7 additions & 0 deletions VSCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ cd just
git checkout 0.1.2
```

or to checkout the current release, which should be stable and is just a tag of the current released version
```
cd just
git checkout current
```


# Start in VSCode

- open the 'just' folder in vscode
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
JUST_VERSION=0.1.2
JUST_VERSION=0.1.3
curl -L -o just.tar.gz https://github.com/just-js/just/archive/${JUST_VERSION}.tar.gz
tar -zxvf just.tar.gz
mv just-${JUST_VERSION} just
Expand Down

0 comments on commit 83d680a

Please sign in to comment.