Skip to content

Commit

Permalink
always update fuels-ts nightly version
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Jan 29, 2025
1 parent 95c09c5 commit d2d0c02
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/update-nightly/updateSubmodules.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export async function updateSubmodules(newDefaultVersions, newNightlyVersions) {
'docs/nightly/fuel-specs',
'docs/nightly/fuel-graphql-docs',
'docs/nightly/migrations-and-disclosures',
'docs/nightly/fuels-ts',
];
await Promise.all(
updateRegardless.map(async (sub) => {
Expand Down Expand Up @@ -73,7 +74,10 @@ async function updateDocs(versions, isNightly) {
submoduleName = `docs${isNightly ? '/nightly' : ''}/fuels-rs`;
break;
case 'ts':
submoduleName = `docs${isNightly ? '/nightly' : ''}/fuels-ts`;
if (isNightly) {
return;
}
submoduleName = 'docs/fuels-ts';
break;
case 'wallet':
submoduleName = `docs${isNightly ? '/nightly' : ''}/fuels-wallet`;
Expand Down

0 comments on commit d2d0c02

Please sign in to comment.