-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes all sudo, pulls dependencies into plan file
Signed-off-by: Jason Heath <[email protected]>
- Loading branch information
1 parent
943d9e5
commit 7bfcd7c
Showing
3 changed files
with
21 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# shellcheck shell=bash | ||
# shellcheck shell=bash disable=SC2034 | ||
|
||
pkg_name=builder-minio | ||
pkg_origin=habitat | ||
pkg_maintainer="The Habitat Maintainers <[email protected]>" | ||
pkg_license=('Apache-2.0') | ||
pkg_deps=(core/minio core/cacerts core/openssl core/aws-cli core/bash) | ||
pkg_deps=(core/aws-cli core/bash core/cacerts core/curl core/jq-static core/minio core/openssl) | ||
pkg_build_deps=(core/git) | ||
|
||
pkg_exports=( | ||
|
@@ -17,7 +17,8 @@ pkg_exports=( | |
pkg_version() { | ||
# TED: After migrating the builder repo we needed to add to | ||
# the rev-count to keep version sorting working | ||
echo "$(($(git rev-list HEAD --count) + 5000))" | ||
# echo "$(($(git rev-list HEAD --count) + 5000))" | ||
echo "$(($(git rev-list HEAD --count) + 5001))" | ||
} | ||
|
||
do_before() { | ||
|