Skip to content

Commit

Permalink
0.5.4 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan committed Sep 7, 2022
1 parent a5f9b2e commit d7ddbcb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

# [0.5.4] (2022-09-07)

- Hotfix for **Install XSOAR local development environment**.

# [0.5.3] (2022-09-07)

- Fixed installation of `poetry install` in M1 MacOS.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "xsoar",
"displayName": "Cortex XSOAR",
"description": "Build, Format, and Validate Cortex XSOAR with ease.",
"version": "0.5.3",
"version": "0.5.4",
"engines": {
"vscode": "^1.54.0"
},
Expand Down
3 changes: 2 additions & 1 deletion src/devEnvs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -471,10 +471,11 @@ export async function openInVirtualenv(dirPath: string): Promise<void> {

async function bootstrapContent(dirPath: string, shouldPreCommit: boolean) {
Logger.info('Bootstrap content')
let command = `export PATH=/opt/homebrew/bin:"$PATH" && ${dirPath}/.hooks/bootstrap`
let command = `${dirPath}/.hooks/bootstrap`
if (!shouldPreCommit) {
command = `NO_HOOKS=1 ${command}`
}
command = `export PATH=/opt/homebrew/bin:"$PATH" && ${command}`
const task = new vscode.Task(
{ type: 'bootstrap', name: 'Bootstrap content' },
vscode.TaskScope.Workspace,
Expand Down

0 comments on commit d7ddbcb

Please sign in to comment.