Improve portability of build scripts

This commit is contained in:
Pierre-Alain TORET 2024-01-31 19:48:26 +01:00 committed by Mechiel Lukkien
parent 1d9e80fd70
commit 5f297ce54c
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
(
cat <<EOF

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail
# generate new typescript client, only install it when it is different, so we

2
tsc.sh
View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail
# - todo: get tsc to not emit semicolons except for the handful cases where it is needed.