ramm 0.0.24 → 0.0.25

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.
Files changed (2) hide show
  1. package/dist/ramm.js +4 -0
  2. package/package.json +1 -1
package/dist/ramm.js CHANGED
@@ -171,6 +171,10 @@ var installPodman = async () => {
171
171
  };
172
172
  var createNetwork = async () => {
173
173
  const netwroks = await execCommand("podman network inspect $(podman network ls -q) -f '{{.NetworkInterface}}'");
174
+ const podmanNetworks = await execCommand("podman network ls");
175
+ if (podmanNetworks.output.includes("ramm")) {
176
+ return;
177
+ }
174
178
  if (netwroks.output.includes("podman_ramm")) {
175
179
  return;
176
180
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramm",
3
3
  "type": "module",
4
- "version": "0.0.24",
4
+ "version": "0.0.25",
5
5
  "scripts": {
6
6
  "build": "bun build ./src/ramm.ts --target bun --outdir ./dist && cp ./src/bun.sh ./dist/bun.sh && bun run types",
7
7
  "types": "tsc --project tsconfig.types.json"