bashitup 1.0.9 → 1.0.13

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