Skip to content

Commit 30ed36b

Browse files
committed
Prefer powershell if present.
- this will increase the chance to work on windows.
1 parent 30656f2 commit 30ed36b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dap-utils.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
-nologo -ex bypass Expand-Archive -path '%s' -dest '%s'"
3737
"Powershell script to unzip vscode extension package file.")
3838

39-
(defcustom dap-utils-unzip-script (cond ((executable-find "unzip") dap-utils--ext-unzip-script)
40-
((executable-find "powershell") dap-utils--ext-pwsh-script)
39+
(defcustom dap-utils-unzip-script (cond ((executable-find "powershell") dap-utils--ext-pwsh-script)
40+
((executable-find "unzip") dap-utils--ext-unzip-script)
4141
(t nil))
4242
"The script to unzip vscode extension package file."
4343
:group 'dap-utils

0 commit comments

Comments
 (0)