Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Fix "exec: command: not found" #11504

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/bootstrap-container
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ function configure() {
function build() {
go/build.sh
make -C client dist
./run exec make klient
./run eval make klient
}

function run_backend() {
go/build.sh
./run is_ready || exit 255
./run migrations up
./run exec supervisord -c supervisord.conf
./run eval supervisord -c supervisord.conf
sleep 2
tail --follow --lines +0 --quiet .logs/*.log
}
Expand Down Expand Up @@ -55,7 +55,7 @@ elif [ "$1" = "run" ]; then
elif [ "$1" = "is_ready" ]; then
shift
is_ready
exec "$@"
eval "$@"
else
exec "$@"
eval "$@"
fi