Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .goreleaser-unix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ before:
builds:
- env:
- CGO_ENABLED=0
- GODEBUG=embedfollowsymlinks=1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this mean it shows up as a copy or an actual symlink?

IIRC, fs.FS doesn't model symlinks.

mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
Expand Down
1 change: 1 addition & 0 deletions .goreleaser-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ builds:
- id: cli
env:
- CGO_ENABLED=0
- GODEBUG=embedfollowsymlinks=1
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
Expand Down
1 change: 1 addition & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ before:
builds:
- env:
- CGO_ENABLED=0
- GODEBUG=embedfollowsymlinks=1
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ acc-showcover:
go tool cover -html=coverage-acceptance.txt

build: tidy
go build
GODEBUG=embedfollowsymlinks=1 go build

# builds the binary in a VM environment (such as Parallels Desktop) where your files are mirrored from the host os
build-vm: tidy
go build -buildvcs=false
GODEBUG=embedfollowsymlinks=1 go build -buildvcs=false

snapshot:
go build -o .databricks/databricks
GODEBUG=embedfollowsymlinks=1 go build -o .databricks/databricks

# Produce release binaries and archives in the dist folder without uploading them anywhere.
# Useful for "databricks ssh" development, as it needs to upload linux releases to the /Workspace.
Expand Down
1 change: 1 addition & 0 deletions experimental/apps-mcp/lib/templates/appkit/AGENTS.md
Loading