Skip to content

Commit

Permalink
Track more branch renames from master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Jan 9, 2025
1 parent 59df302 commit 70ec8ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/updateDeps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ async function main() {
await our_download('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css', 'libs/fontawesome/solid.min.css')
await our_download('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css', 'libs/fontawesome/brands.min.css')

for (const pkg of ['StaticLint', 'SymbolServer', 'Salsa']) {
for (const pkg of ['StaticLint', 'SymbolServer']) {
console.log(`Updating ${pkg} to latest master`)
await cp.exec('git checkout master', { cwd: path.join(process.cwd(), `scripts/packages/${pkg}`) })
await cp.exec('git pull', { cwd: path.join(process.cwd(), `scripts/packages/${pkg}`) })
}

for (const pkg of ['LanguageServer', 'CSTParser', 'JSONRPC', 'IJuliaCore', 'JuliaWorkspaces', 'TestItemControllers', 'TestItemDetection', 'DebugAdapter']) {
for (const pkg of ['LanguageServer', 'CSTParser', 'JSONRPC', 'IJuliaCore', 'JuliaWorkspaces', 'TestItemControllers', 'TestItemDetection', 'DebugAdapter', 'Salsa']) {
console.log(`Updating ${pkg} to latest main`)
await cp.exec('git checkout main', { cwd: path.join(process.cwd(), `scripts/packages/${pkg}`) })
await cp.exec('git pull', { cwd: path.join(process.cwd(), `scripts/packages/${pkg}`) })
Expand Down

0 comments on commit 70ec8ba

Please sign in to comment.