Skip to content

Commit ad6718a

Browse files
committed
retry
1 parent 1bd6529 commit ad6718a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ DYLIB_ARCHES := darwin_amd64 darwin_arm64
8484

8585
# Computed variables based on the above.
8686
CODER_SLIM_BINARIES := $(addprefix build/coder-slim_$(VERSION)_,$(OS_ARCHES))
87-
CODER_DYLIBS := $(foreach os_arch, $(DYLIB_ARCHES), build/coder-vpn_$(VERSION)_$(os_arch).dylib)
87+
CODER_DYLIBS := $(foreach os_arch, $(DYLIB_ARCHES), build/coder-vpn_$(VERSION)_$(os_arch))
8888
CODER_FAT_BINARIES := $(addprefix build/coder_$(VERSION)_,$(OS_ARCHES))
8989
CODER_ALL_BINARIES := $(CODER_SLIM_BINARIES) $(CODER_FAT_BINARIES)
9090
CODER_TAR_GZ_ARCHIVES := $(foreach os_arch, $(ARCHIVE_TAR_GZ), build/coder_$(VERSION)_$(os_arch).tar.gz)
@@ -250,11 +250,11 @@ $(CODER_DYLIBS): go.mod go.sum $(GO_SRC_FILES)
250250
--os "$$os" \
251251
--arch "$$arch" \
252252
--version "$(VERSION)" \
253-
--output "$@" \
253+
--output "$@.dylib" \
254254
--dylib
255255

256-
cp "$@" "./site/out/bin/coder-vpn-$$os-$$arch.dylib"
257-
cp ./build/*.h "./site/out/bin/coder-vpn-$$os.h"
256+
cp "$@.dylib" "./site/out/bin/coder-vpn-$$os-$$arch.dylib"
257+
cp "$@.h" "./site/out/bin/coder-vpn-$$os.h"
258258
else
259259
echo "Skipping dylib build on non-Darwin OS"
260260
fi

0 commit comments

Comments
 (0)