Skip to content

Commit

Permalink
Bumping to 0.1-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
keithpitt committed Mar 14, 2014
1 parent 4535d68 commit 14a9e3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion artifact.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {

app := cli.NewApp()
app.Name = "buildbox-artifact"
app.Version = "0.1.alpha"
app.Version = buildbox.Version

// Define the actions for our CLI
app.Commands = []cli.Command{
Expand Down
2 changes: 1 addition & 1 deletion buildbox/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package buildbox

const (
Version = "0.1.alpha"
Version = "0.1.beta1"
)
5 changes: 3 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# For more information, see: https://github.com/buildboxhq/buildbox-agent

COMMAND="bash -c \"\`curl -sL https://raw.github.com/buildboxhq/buildbox-agent/master/install.sh\`\""
VERSION="0.1-beta1"

set -e

Expand All @@ -21,7 +22,7 @@ echo -e "\033[33m
|___/\033[0m
-- https://buildbox.io
Latest Version: \033[35mv0.1-alpha\033[0m"
Latest Version: \033[35mv$VERSION\033[0m"

UNAME=`uname -sp | awk '{print tolower($0)}'`

Expand Down Expand Up @@ -56,7 +57,7 @@ echo -e "Destination: \033[35m$DESTINATION\033[0m"

# Download and unzip the file to the destination
DOWNLOAD="buildbox-agent-$PLATFORM-$ARCH.tar.gz"
URL="https://github.com/buildboxhq/buildbox-agent/releases/download/v0.1-alpha/$DOWNLOAD"
URL="https://github.com/buildboxhq/buildbox-agent/releases/download/v$VERSION/$DOWNLOAD"
echo -e "\nDownloading $URL"

# Remove the download if it already exists
Expand Down

0 comments on commit 14a9e3d

Please sign in to comment.