bashitup 1.0.5 → 1.0.9

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/bin/bashitup +7 -3
  2. package/package.json +1 -1
package/bin/bashitup CHANGED
@@ -1,4 +1,8 @@
1
1
  #!/bin/bash
2
- # bin/bashitup
3
- DIR="$(cd "$(dirname "$0")" && pwd)"
4
- bash "$DIR/../bashitup.sh" "$@"
2
+ # bin/bashitup - npx executable wrapper
3
+
4
+ # Resolve the path to the installed package
5
+ DIR="$(cd "$(dirname "$0")/.." && pwd)"
6
+
7
+ # Execute the main script with all arguments
8
+ bash "$DIR/bashitup.sh" "$@"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bashitup",
3
- "version": "1.0.5",
3
+ "version": "1.0.9",
4
4
  "description": "Interactive bash menu builder",
5
5
  "bin": {
6
6
  "bashitup": "bin/bashitup"