Skip to content

Commit

Permalink
Add execution policy to sublime-build
Browse files Browse the repository at this point in the history
  • Loading branch information
vors committed May 26, 2018
1 parent 6a145ca commit 46879ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Support/Powershell.sublime-build
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"cmd": ["pwsh", "-noprofile", "-file", "$file"],
"cmd": ["pwsh", "-noprofile", "-ExecutionPolicy", "Bypass", "-file", "$file"],
"selector": "source.powershell",

"windows": {
"cmd": ["powershell.exe", "-noprofile", "-file", "$file"],
"cmd": ["powershell.exe", "-noprofile", "-ExecutionPolicy", "Bypass", "-file", "$file"],
}
}

0 comments on commit 46879ab

Please sign in to comment.