trying out posix sh (#14)

* trying out posix sh
This commit is contained in:
Daniel Carbone
2024-11-14 19:38:37 -06:00
committed by GitHub
parent de7c0d1fb1
commit ca8101273e
3 changed files with 59 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
set -e
@@ -54,7 +54,7 @@ esac
# determine binary name
if [[ "${_os}" == "linux" ]]; then
if [ "${_os}" = "linux" ]; then
case "${_arch}" in
'386')
_bin_name="jq-linux32"