Skip to content

Commit

Permalink
fix: trashCmd config not recognizing macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Nov 6, 2024
1 parent 310a949 commit 3998362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/genghis/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local M = {}
---@return string|string[]|false
local function setDefaultTrashCmd()
local osTrashCmd
if jit.os == "osx" then
if jit.os == "OSX" then
osTrashCmd = "trash"
elseif jit.os == "Windows" then
osTrashCmd = "trash"
Expand Down

0 comments on commit 3998362

Please sign in to comment.