We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 943585e commit 05763a5Copy full SHA for 05763a5
nightly/main.js
@@ -12,7 +12,9 @@ async function getLatestNightlyVersion() {
12
})) {
13
for (const release of response.data) {
14
if (release.tag_name.startsWith('swift-wasm-DEVELOPMENT-SNAPSHOT-')) {
15
- return release.tag_name;
+ const tagName = release.tag_name;
16
+ // Strip swift- prefix from the tag name
17
+ return tagName.substring("swift-".length);
18
}
19
20
0 commit comments