mkloubert / vs-deploy

Visual Studio Code extension that provides commands to deploy files of a workspace to a destination.
https://marketplace.visualstudio.com/items?itemName=mkloubert.vs-deploy
MIT License
131 stars 24 forks source link

openOutputOnDeploy not working as expected #161

Open faizan1990 opened 5 years ago

faizan1990 commented 5 years ago

This is what my settings.json looks like inside of .vscode:

{
    "deploy": {
        "packages": [
            {
                "name": "Version 2.3.4",
                "description": "Package version 2.3.4",
                "files": [
                    "**/*.php",
                    "/*.json"
                ],
                "exclude": [
                    "vendor/"
                ],
                "deployOnSave": true,
                "openOutputOnDeploy": false,
                "showPopupOnSuccess": false,
                "showDeployResultInStatusBar": true
            }
        ],
}

However, upon making a change in a file and then saving it always opens the OUTPUT window. Any help?