bashitup 1.0.11 → 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 +4 -2
  2. package/package.json +1 -1
package/bin/bashitup CHANGED
@@ -1,6 +1,8 @@
1
- #!/bin/bash
1
+ #!/usr/bin/env bash
2
2
  # bin/bashitup
3
3
 
4
- # Run the main script from the package location
4
+ # Resolve the package directory
5
5
  DIR="$(cd "$(dirname "$0")/.." && pwd)"
6
+
7
+ # Run the main script
6
8
  exec bash "$DIR/bashitup.sh" "$@"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bashitup",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Interactive bash menu builder",
5
5
  "bin": {
6
6
  "bashitup": "bin/bashitup"