Skip to content
Open
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
4 changes: 2 additions & 2 deletions macos/AgentCLI/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion macos/AgentCLI/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
.executable(name: "AgentCLI", targets: ["AgentCLI"]),
],
dependencies: [
.package(url: "https://github.com/sindresorhus/KeyboardShortcuts", exact: "1.10.0"),
.package(url: "https://github.com/sindresorhus/KeyboardShortcuts", exact: "1.17.0"),
],
targets: [
.executableTarget(
Expand Down
7 changes: 5 additions & 2 deletions tests/test_macos_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,8 +805,11 @@ def test_macos_build_script_creates_drag_install_dmg() -> None:
assert "-format UDRW" in script
assert "hdiutil attach" in script
assert "-mountpoint" not in script
assert 'volume_path=$(printf' in script
assert 'set background picture of theViewOptions to file ".background:dmg-background.png"' in script
assert "volume_path=$(printf" in script
assert (
'set background picture of theViewOptions to file ".background:dmg-background.png"'
in script
)
assert 'set position of item "AgentCLI.app" of container window to {150, 180}' in script
assert 'set position of item "Applications" of container window to {450, 180}' in script
assert 'if ! set_dmg_finder_layout "$volume_path"; then' in script
Expand Down
Loading