sandboxbox 2.2.4 → 2.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +1 -1
- package/package.json +1 -1
- package/scripts/download-podman.js +2 -2
- package/scripts/podman-config.js +1 -1
package/CLAUDE.md
CHANGED
@@ -81,7 +81,7 @@ if (process.platform === 'win32' && isBundled) {
|
|
81
81
|
- **Simple Configuration**: Minimal backend setup only when needed
|
82
82
|
- **Auto-Download**: Downloads platform-specific binaries automatically
|
83
83
|
- **NPX Compatible**: Works via npx without global installation
|
84
|
-
- **Windows
|
84
|
+
- **Windows Portable Binary**: Uses podman-remote-release-windows_amd64.zip with lightweight backend
|
85
85
|
|
86
86
|
## Isolation Architecture
|
87
87
|
|
package/package.json
CHANGED
@@ -38,7 +38,7 @@ async function main() {
|
|
38
38
|
return;
|
39
39
|
}
|
40
40
|
|
41
|
-
console.log(`📥 Downloading Podman
|
41
|
+
console.log(`📥 Downloading Podman v${PODMAN_VERSION}...`);
|
42
42
|
|
43
43
|
const archiveName = url.split('/').pop();
|
44
44
|
const archivePath = join(binDir, archiveName);
|
@@ -77,7 +77,7 @@ async function main() {
|
|
77
77
|
chmodSync(binaryPath, 0o755);
|
78
78
|
}
|
79
79
|
|
80
|
-
console.log(`✅ Podman
|
80
|
+
console.log(`✅ Podman installed successfully!`);
|
81
81
|
console.log(` Binary: ${binaryPath}\n`);
|
82
82
|
|
83
83
|
if (existsSync(archivePath)) {
|
package/scripts/podman-config.js
CHANGED
@@ -3,7 +3,7 @@ export const ARCH = process.arch === 'arm64' ? 'arm64' : 'amd64';
|
|
3
3
|
|
4
4
|
export const DOWNLOADS = {
|
5
5
|
win32: {
|
6
|
-
url: `https://github.com/containers/podman/releases/download/v${PODMAN_VERSION}/podman-remote-release-
|
6
|
+
url: `https://github.com/containers/podman/releases/download/v${PODMAN_VERSION}/podman-remote-release-windows_${ARCH}.zip`,
|
7
7
|
binary: 'podman.exe',
|
8
8
|
extract: 'unzip'
|
9
9
|
},
|