Use bash not sh for util scripts

This commit is contained in:
rubenwardy 2023-12-15 23:49:54 +00:00
parent 4ef3aae193
commit e6bba7d8a2
8 changed files with 8 additions and 8 deletions

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Open SSH to app instance

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Create a database migration, and copy it back to the host.

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Open SQL console for the database

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Create a database migration, and copy it back to the host.

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Hot/live reload - only works in debug mode

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Run all pending migrations

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
. "${BASH_SOURCE%/*}/common.sh"

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e
. "${BASH_SOURCE%/*}/common.sh"