Skip to content

Commit

Permalink
suppress stdout output (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
princemaple authored Feb 28, 2021
1 parent af7ba81 commit 48478a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/elixir_ls_utils/priv/debugger.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off & setlocal enabledelayedexpansion

IF EXIST "%APPDATA%\elixir_ls\setup.bat" (
CALL "%APPDATA%\elixir_ls\setup.bat"
CALL "%APPDATA%\elixir_ls\setup.bat" > nul
)

SET ERL_LIBS=%~dp0;%ERL_LIBS%
Expand Down
2 changes: 1 addition & 1 deletion apps/elixir_ls_utils/priv/language_server.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off & setlocal enabledelayedexpansion

IF EXIST "%APPDATA%\elixir_ls\setup.bat" (
CALL "%APPDATA%\elixir_ls\setup.bat"
CALL "%APPDATA%\elixir_ls\setup.bat" > nul
)

SET ERL_LIBS=%~dp0;%ERL_LIBS%
Expand Down

0 comments on commit 48478a6

Please sign in to comment.