Replace bash with /bin/sh

This commit is contained in:
link2xt
2024-07-01 09:36:06 +00:00
committed by holger krekel
parent 67be981176
commit 635b5de304
4 changed files with 6 additions and 3 deletions

View File

@@ -15,6 +15,9 @@
- improve filtermail checks for encrypted messages and drop support for unencrypted MDNs - improve filtermail checks for encrypted messages and drop support for unencrypted MDNs
([#320](https://github.com/deltachat/chatmail/pull/320)) ([#320](https://github.com/deltachat/chatmail/pull/320))
- replace `bash` with `/bin/sh`
([#334](https://github.com/deltachat/chatmail/pull/334))
## 1.3.0 - 2024-06-06 ## 1.3.0 - 2024-06-06
- don't check necessary DNS records on cmdeploy init anymore - don't check necessary DNS records on cmdeploy init anymore

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/bin/sh
# #
# Wrapper for cmdelpoy to run it in activated virtualenv. # Wrapper for cmdelpoy to run it in activated virtualenv.
set -e set -e

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# Install dependencies # Install dependencies
echo "Installing dependencies for this script:" echo "Installing dependencies for this script:"

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
set -e set -e
python3 -m venv --upgrade-deps venv python3 -m venv --upgrade-deps venv