ramm 0.0.43 → 0.0.44

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 +2 -2
  2. package/package.json +1 -1
package/dist/ramm.js CHANGED
@@ -254,8 +254,8 @@ var getSystemdPathToService = (serviceName, context = defaultContext) => {
254
254
  };
255
255
  var createSystemdService = async (serviceName, content, context = defaultContext) => {
256
256
  await createSystemdUnit(serviceName, content, context);
257
- await enabledSystemdUnit(`systemctl enable ${serviceName}`, context);
258
- await startSystemdUnit(`systemctl start ${serviceName}`, context);
257
+ await enabledSystemdUnit(serviceName, context);
258
+ await startSystemdUnit(serviceName, context);
259
259
  };
260
260
 
261
261
  // src/nft.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramm",
3
3
  "type": "module",
4
- "version": "0.0.43",
4
+ "version": "0.0.44",
5
5
  "scripts": {
6
6
  "build": "bun build ./src/ramm.ts --target bun --outdir ./dist && cp ./src/bun.sh ./dist/bun.sh",
7
7
  "types": "tsc --project tsconfig.types.json"