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 9eb6333 commit 4b18d09Copy full SHA for 4b18d09
scripts/cargo-msfs.ts
@@ -76,7 +76,7 @@ await $`docker image inspect ${IMAGE_NAME}:latest`.quiet().catch(async () => {
76
77
// Ensure SDKs are up to date, rebuilding if needed
78
const installedSdks = JSON.parse(
79
- await $`docker run --rm ${IMAGE_NAME} bash -c "cargo-msfs info -f"`.text(),
+ await $`docker run --rm ${IMAGE_NAME} bash -c "cargo-msfs info -f"`.text(),
80
) as InstalledSdkVersions;
81
if (installedSdks.versions.some(v => !v.up_to_date)) {
82
console.info("[*] Updating SDK in Docker image...");
0 commit comments