Skip to content

Commit

Permalink
Fix extension run commands params
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrieleMessina committed Apr 8, 2024
1 parent 1f9a803 commit 61c9df3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qutes-vscode/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function runQutes(runs, params = []){
request: "launch",
program: "src/qutes.py",
console: "integratedTerminal",
args: [params,"-image","-circuit","-iter",runs,filePath],
args: params.concat(["-image","-circuit","-iter",runs,filePath]),
justMyCode: true
};

Expand Down
2 changes: 1 addition & 1 deletion qutes-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Gabriele Messina",
"publisher": "GabrieleMessina",
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"engines": {
"vscode": "^1.52.0"
},
Expand Down

0 comments on commit 61c9df3

Please sign in to comment.