Skip to content

Commit

Permalink
force busybox shell
Browse files Browse the repository at this point in the history
  • Loading branch information
niaow committed Jun 12, 2018
1 parent 205117d commit 2cb0e81
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion alternative.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/busybox sh

# Alternative is a script to manage files provided by multiple packages

Expand Down
2 changes: 1 addition & 1 deletion fetchers/http.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/busybox sh

if [ $# -ne 3 ]; then
echo "Usage: $0 REPO PATH DEST"
Expand Down
2 changes: 1 addition & 1 deletion fetchers/https.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/busybox sh

if [ $# -ne 3 ]; then
echo "Usage: $0 REPO PATH DEST"
Expand Down
2 changes: 1 addition & 1 deletion inst.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/busybox sh

fail() {
echo "ERROR: $1" >&2
Expand Down
2 changes: 1 addition & 1 deletion lpkg.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/busybox sh

fail() {
echo "ERROR: $1" >&2
Expand Down
2 changes: 1 addition & 1 deletion rm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/busybox sh

# Script to remove a package

Expand Down

0 comments on commit 2cb0e81

Please sign in to comment.