mirror of
https://github.com/transmission/transmission
synced 2025-01-03 13:35:36 +00:00
fix: use bash, not sh, for code_style.sh script (#1022)
The script uses "set -o", which doesn't exist in vanilla sh, causing failure on systems that bind sh to dash rather than bash. This PR makes the bash requirement explicit.
This commit is contained in:
parent
b0e33117c5
commit
edbdeae623
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
|
|
Loading…
Reference in a new issue