Skip to content

Commit

Permalink
Update boilercore pinned commit
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Aug 24, 2023
1 parent 906afe2 commit 8a78c39
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .tools/requirements/requirements_ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# * -------------------------------------------------------------------------------- * #
# * Changes below should persist in significant template updates.

boilercore@git+https://github.com/blakeNaccarato/boilercore@2782223fb5ac0e296e075b3a9ef35c7c76b1eddc
boilercore@git+https://github.com/blakeNaccarato/boilercore@edd698f3ebf128fee99bbf9e6b91f8b64a964a67

# * -------------------------------------------------------------------------------- * #
# * Changes below may be lost in significant template updates.
Expand Down
10 changes: 10 additions & 0 deletions .tools/scripts/Update-Boilercore.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<#.SYNOPSIS
Update boilercore to the latest commit pin.
#>

git submodule update --init --remote --merge boilercore
git add --all
git commit -m "Update boilercore pinned commit"
git submodule deinit --force boilercore
git add --all
git commit --amend --no-edit
16 changes: 12 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,18 @@
// * Changes below should persist in significant template updates.

{
"label": "proj: local pyrightconfig.json",
"type": "process",
"command": "pwsh",
"args": ["-Command", "python .tools/scripts/local_pyrightconfig.py"],
"label": "proj: update boilercore",
"type": "shell",
"options": { "shell": { "executable": "pwsh" } },
"command": ".tools/scripts/Update-Boilercore.ps1",
"icon": { "id": "graph" },
"problemMatcher": []
},
{
"label": "proj: local pyrightconfig",
"type": "shell",
"options": { "shell": { "executable": "pwsh", "args": ["-Command"] } },
"command": "python .tools/scripts/local_pyrightconfig.py",
"icon": { "id": "graph" },
"problemMatcher": []
},
Expand Down
2 changes: 1 addition & 1 deletion boilercore

0 comments on commit 8a78c39

Please sign in to comment.