fix(server): add executable permission to start scripts (#2650)

This commit is contained in:
Jason Rasmussen 2023-06-02 15:04:26 -04:00 committed by GitHub
parent ef86a77946
commit c5234731d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
server/start-microservices.sh Normal file → Executable file
View file

@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
if [ "$DB_HOSTNAME_FILE" ]; then
export DB_HOSTNAME=$(cat $DB_HOSTNAME_FILE)

2
server/start-server.sh Normal file → Executable file
View file

@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
if [ "$DB_HOSTNAME_FILE" ]; then
export DB_HOSTNAME=$(cat $DB_HOSTNAME_FILE)