Skip to content

Commit

Permalink
version 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dbpolito committed Jul 10, 2020
1 parent 0a3eb9c commit 0226fc4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Have the same feeling working on multiple projects with different stacks.

## Installation

One Liner
```bash
sh -c "$(curl -fsSL https://raw.githubusercontent.com/kool-dev/kool/master/install.sh)"
```

## Usage

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var rootCmd = &cobra.Command{
Long: `An easy and robust software development environment
tool helping you from project creation until deployment.
Complete documentation is available at https://kool.dev`,
Version: "1.0.7",
Version: "1.0.8",
}

// Execute proxies the call to cobra root command
Expand Down
5 changes: 3 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ -z "$DOWNLOAD_URL" ]; then
fi

DEFAULT_BIN="/usr/local/bin/kool"
if [ -z "$DOWNLOAD_URL" ]; then
if [ -z "$BIN_PATH" ]; then
BIN_PATH=$DEFAULT_BIN
fi

Expand Down Expand Up @@ -43,7 +43,8 @@ do_install () {
# PLAT="wsl"
fi

wget -O $BIN_PATH "$DOWNLOAD_URL/kool-$PLAT-$ARCH"
# wget -O $BIN_PATH "$DOWNLOAD_URL/kool-$PLAT-$ARCH"
curl -fsSL "$DOWNLOAD_URL/kool-$PLAT-$ARCH" -o $BIN_PATH
chmod +x $BIN_PATH
}

Expand Down

0 comments on commit 0226fc4

Please sign in to comment.