From 7f28ded15dd21376d0785f9b9749d89a4061f309 Mon Sep 17 00:00:00 2001 From: mitchelldavis Date: Mon, 31 Dec 2018 14:39:53 -0600 Subject: [PATCH] Updating the WORKSPACE file because I misnamed the workspace --- .travis.yml | 10 +++++----- WORKSPACE | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index a450ee9..b791dd8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,17 +27,17 @@ script: build \ --local_resources=400,1,1.0 \ --config=ci \ - @terraform_verifier//... - - find ./bazel-bin/hashicorp_verifier -maxdepth 2 + @hashicorp_verifier//... + - find ./bazel-bin/external/hashicorp_verifier -maxdepth 3 notifications: email: false deploy: provider: releases api_key: $github_token file: - - "./bazel-bin/hashicorp_verifier/darwin_amd64_pure_stripped/hashicorp_verfier_darwin_amd64" - - "./bazel-bin/hashicorp_verifier/linux_amd64_pure_stripped/hashicorp_verfier_linux_amd64" - - "./bazel-bin/hashicorp_verifier/windows_amd64_pure_stripped/hashicorp_verfier_windows_amd64.exe" + - "./bazel-bin/external/hashicorp_verifier/hashicorp_verifier/darwin_amd64_pure_stripped/hashicorp_verfier_darwin_amd64" + - "./bazel-bin/external/hashicorp_verifier/hashicorp_verifier/linux_amd64_pure_stripped/hashicorp_verfier_linux_amd64" + - "./bazel-bin/external/hashicorp_verifier/hashicorp_verifier/windows_amd64_pure_stripped/hashicorp_verfier_windows_amd64.exe" skip_cleanup: true draft: true on: diff --git a/WORKSPACE b/WORKSPACE index 5839975..7ea4fa2 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,4 +1,4 @@ -workspace(name = "terraform_verifier") +workspace(name = "hashicorp_verifier") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")