Skip to content

Commit

Permalink
install anka builder script
Browse files Browse the repository at this point in the history
  • Loading branch information
fkorotkov committed Apr 16, 2018
1 parent e6af909 commit 3963fa0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ packer_cache/

# IntelliJ
.idea

packer-builder-veertu-anka
build
13 changes: 13 additions & 0 deletions scripts/install-anka-builder.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

set -e

BUILDER_VERSION=1.0.1

curl -L -o packer-builder-veertu-anka.tar.gz \
https://github.com/buildkite/packer-builder-veertu-anka/releases/download/v${BUILDER_VERSION}/packer-builder-veertu-anka_${BUILDER_VERSION}_darwin_amd64.tar.gz

mkdir -p build
tar -xvzf packer-builder-veertu-anka.tar.gz -C build
mv build/packer-builder-veertu-anka packer-builder-veertu-anka
rm -rf build packer-builder-veertu-anka.tar.gz

0 comments on commit 3963fa0

Please sign in to comment.