From 29e1de7012fd5d0970392a0a2a42f37560741b5a Mon Sep 17 00:00:00 2001 From: Umang Chouhan Date: Tue, 16 Jan 2024 12:39:39 -0800 Subject: [PATCH] fix bin path --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 978756a..c13cecf 100755 --- a/bin/compile +++ b/bin/compile @@ -49,7 +49,7 @@ export PATH="$BUILD_DIR/.heroku/tailscale/bin:$PATH" log "Fetch Tailscale" curl -sL "https://pkgs.tailscale.com/stable/tailscale_${TAILSCALE_VERSION}_amd64.tgz" \ - | tar -zxf - -C "${BUILD_DIR}/.heroku/tailscale" --strip=1 tailscale_${TAILSCALE_VERSION}_amd64/tailscaled tailscale_${TAILSCALE_VERSION}_amd64/tailscale + | tar -zxf - -C "${BUILD_DIR}/.heroku/tailscale/bin" --strip=1 tailscale_${TAILSCALE_VERSION}_amd64/tailscaled tailscale_${TAILSCALE_VERSION}_amd64/tailscale # Mark the scripts as executable. chmod +x "$BUILD_DIR/.heroku/tailscale/bin/tailscale" chmod +x "$BUILD_DIR/.heroku/tailscale/bin/tailscaled"