Skip to content

Commit

Permalink
Merge pull request #38 from intra2net/fix-minor-typo-in-win-packager
Browse files Browse the repository at this point in the history
Unify spelling of DISABLE_VNCDOTOOL env variable
  • Loading branch information
pevogam authored Jan 3, 2023
2 parents 79f9d3e + ea18f5f commit faf6ba4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packaging/packager_win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SET DISABLE_DRAG=1
REM Requires X server and thus only available on Linux
SET DISABLE_XDOTOOL=1
REM Requires VNC server and thus only available on Linux
SET DISABLE_VNCDOTOOl=1
SET DISABLE_VNCDOTOOL=1

REM Main deps
cd %DISTRO_ROOT%\
Expand Down
2 changes: 1 addition & 1 deletion tests/test_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def setUp(self):
self.backends += [XDoToolController()]
if os.environ.get('DISABLE_PYAUTOGUI', "0") == "0":
self.backends += [PyAutoGUIController()]
if os.environ.get('DISABLE_VNCDOTOOl', "0") == "0":
if os.environ.get('DISABLE_VNCDOTOOL', "0") == "0":
vncdotool = VNCDoToolController(synchronize=False)
vncdotool.params["vncdotool"]["vnc_password"] = self.vncpass
vncdotool.synchronize_backend()
Expand Down

0 comments on commit faf6ba4

Please sign in to comment.