Skip to content

Commit

Permalink
Try adding linux/arm64 support for CP (#2219)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianstrauch committed Aug 31, 2023
1 parent a7d26a4 commit aabb821
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion debian/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ install: apply-patches
chmod 755 $(DESTDIR)$(BINPATH)/confluent

cd $(DESTDIR)$(LIBPATH); \
for dir in darwin_amd64 darwin_arm64 linux_amd64 windows_amd64; do \
for dir in darwin_amd64 darwin_arm64 linux_amd64 linux_arm64 windows_amd64; do \
mkdir -p $${dir}; \
ext=""; if [[ $${dir} =~ windows_.+ ]]; then ext=".exe"; fi; \
filepath=$${dir}/confluent$${ext}; \
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ Standards-Version: 3.9.3
Homepage: http://confluent.io

Package: confluent-cli
Architecture: any
Architecture: all
Depends: ${misc:Depends}
Description: Command Line Interface for managing Confluent Platform
6 changes: 3 additions & 3 deletions debian/patches/standard_build_layout.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--- cli/Makefile 2023-08-17 08:17:03.168828613 -0700
+++ debian/Makefile 2023-07-07 11:26:58.304825004 -0700
--- cli/Makefile 2023-08-21 09:55:36.335812643 -0700
+++ debian/Makefile 2023-08-23 14:14:07.398823015 -0700
@@ -1,120 +1,130 @@
-SHELL := /bin/bash
-GORELEASER_VERSION := v1.17.2
Expand Down Expand Up @@ -118,7 +118,7 @@
+ chmod 755 $(DESTDIR)$(BINPATH)/confluent
+
+ cd $(DESTDIR)$(LIBPATH); \
+ for dir in darwin_amd64 darwin_arm64 linux_amd64 windows_amd64; do \
+ for dir in darwin_amd64 darwin_arm64 linux_amd64 linux_arm64 windows_amd64; do \
+ mkdir -p $${dir}; \
+ ext=""; if [[ $${dir} =~ windows_.+ ]]; then ext=".exe"; fi; \
+ filepath=$${dir}/confluent$${ext}; \
Expand Down

0 comments on commit aabb821

Please sign in to comment.