Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add terraform-config-inspect for apk and deb #748

Merged
merged 10 commits into from
Dec 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Attempt to fix remote build error
Nuru committed Dec 8, 2020
commit 491b02be389fe2f2841794768fb1648c9176da87
5 changes: 4 additions & 1 deletion vendor/terraform-config-inspect/Makefile
Original file line number Diff line number Diff line change
@@ -18,9 +18,12 @@ $(INSTALL_PATH)/$(PACKAGE_EXE): main.go version.go VERSION
mkdir -p $(INSTALL_PATH)
go generate
go build -o $(INSTALL_PATH)/$(PACKAGE_EXE)
chmod 777 $(INSTALL_PATH)/$(PACKAGE_EXE)

test:
$(PACKAGE_EXE) --version | grep -F $(APK_PACKAGE_VERSION)
@echo Test: expecting exe version like $(APK_PACKAGE_VERSION)
@echo Running: $(PACKAGE_EXE) --version && $(PACKAGE_EXE) --version
$(PACKAGE_EXE) --version | grep -q -F $(APK_PACKAGE_VERSION)

## This may be required for apk building and varies from package to package
# Custom post-package processing (Note the double colon to append to current inherited package/prepare task)