1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-28 08:02:28 +01:00

Merge pull request #1226 from mdevlamynck/fix-scripts

Shell script improvements
This commit is contained in:
Ethan P
2020-10-04 13:49:50 -07:00
committed by GitHub
5 changed files with 11 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eou pipefail

View File

@@ -1,4 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$(dirname "${BASH_SOURCE[0]}")"
python="python3"
if ! command -v python3 &>/dev/null; then python="python"; fi