Skip to content

Commit 80cdfa1

Browse files
authored
Fix pbpaste error on MacOS buildbots (#36763)
1 parent e4a3329 commit 80cdfa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/InteractiveUtils/src/clipboard.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if Sys.isapple()
2525

2626
# See above comment in `clipboard(x)`
2727
if Sys.which("reattach-to-user-namespace") !== nothing
28-
pbcopy_cmd = `reattach-to-user-namespace pbpaste`
28+
pbpaste_cmd = `reattach-to-user-namespace pbpaste`
2929
end
3030
return read(pbpaste_cmd, String)
3131
end

0 commit comments

Comments
 (0)