diff --git a/plugins/app.installer b/plugins/app.installer deleted file mode 100644 index fc4c4549e4..0000000000 --- a/plugins/app.installer +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash - -set -e - -source "$(dirname "$0")/.common" - -GOPATH=$(go env GOPATH) -REPO=https://github.com/docker/app.git -COMMIT=v0.9.1-beta3 -DEST=${GOPATH}/src/github.com/docker/app - -build() { - if [ ! -d "${DEST}" ]; then - git clone "${REPO}" "${DEST}" - fi - ( - cd "${DEST}" - git fetch --all - git checkout -q "${COMMIT}" - # There's no real versions yet, but this'll just leave it blank - GO111MODULE=off make dynamic - ) -} - -install_plugin() { - ( - cd "${DEST}" - install_binary bin/docker-app - ) -} - -build_or_install "$@"