Skip to content

Commit

Permalink
Merge pull request #1854 from habitat-sh/ts_error
Browse files Browse the repository at this point in the history
fix typescript build error passing no args to fetchCurrentLts
  • Loading branch information
mwrock authored Oct 30, 2024
2 parents 6bdfab1 + 260768e commit be356c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,6 @@ steps:
docker:
privileged: true

- label: "[lint] :windows: :paperclip: clippy!"
command:
- .\test\run_clippy.ps1 .\test\unexamined_lints.txt .\test\allowed_lints.txt .\test\lints_to_fix.txt .\test\denied_lints.txt
timeout_in_minutes: 40
expeditor:
executor:
docker:
environment:
- BUILDKITE
host_os: windows
shell: ["powershell", "-Command"]

- label: "[lint] :terraform: terraform validate"
command:
- .expeditor/scripts/verify/terraform_validate.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,12 @@ export class PackageComponent implements OnInit, OnDestroy {
.subscribe(([channel]) => {
channel.forEach((channel) => {
if (channel.name === latestLTS) {
this.fetchCurrentLts();
if (this.target === undefined) {
this.fetchCurrentLts('');
}
else {
this.fetchCurrentLts(this.target);
}
return;
}
});
Expand Down

0 comments on commit be356c6

Please sign in to comment.