Skip to content

Commit

Permalink
fix: use bash for install script (#44)
Browse files Browse the repository at this point in the history
Use bash for the install script instead of sh. The KTF install script
relies on some bash-specific shell builtins (set -o pipefail) and won't
run with plain sh.
  • Loading branch information
Travis Raines committed Jul 14, 2021
1 parent e42af9e commit 9641b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash

set -euo pipefail

Expand Down

0 comments on commit 9641b69

Please sign in to comment.