summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-09-04 19:54:31 -0400
committerAndrew Cady <d@jerkface.net>2020-09-04 19:55:23 -0400
commitab7f1500ff4d60b6da008700213c370c126afcfa (patch)
treec99c66e3b92f4b2672eb8e94fcb409f11eea4bda
parent7c31e976199ecdd26bea6eb37aed735e304cc23e (diff)
use correct shell
-rw-r--r--selfpublish.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/selfpublish.sh b/selfpublish.sh
index 9037e4f..3a21a55 100644
--- a/selfpublish.sh
+++ b/selfpublish.sh
@@ -44,7 +44,7 @@ dpkg_install()
44 as_root tee -a /etc/apt/sources.list.d/buster-backports.list >/dev/null ;; 44 as_root tee -a /etc/apt/sources.list.d/buster-backports.list >/dev/null ;;
45 esac 45 esac
46 46
47 as_root sh -c "set -$-; apt-get update; dpkg -i $*; apt-get -t buster-backports -f install selfpublish-dot-sh-deps+ apache2+ fortune+ curl+" 47 as_root $SHELL -c "set -$- +e; apt-get update; dpkg -i $*; apt-get -t buster-backports -f install selfpublish-dot-sh-deps+ apache2+ fortune+ curl+"
48} 48}
49 49
50control_file() 50control_file()