Use bash in prepare scripts (#339)

Prepare scripts that use `#!/bin/sh` and
`source "$HOME/.sdkman/bin/sdkman-init.sh"`
fail on systems where `sh` is not `bash`,
e.g. on Ubuntu it is `dash` which has not `source`.
This commit is contained in:
Alexander Yastrebov
2024-01-12 08:25:43 +01:00
committed by GitHub
parent 3127962ce2
commit 80c5c2eb3e
5 changed files with 6 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2023 The original authors
#