mirror of
https://github.com/usetrmnl/terminus.git
synced 2026-04-29 13:34:37 -07:00
31ec83b34f
No longer necessary now that these have been converted into jobs managed by our worker service. Milestone: minor
12 lines
112 B
Bash
Executable File
12 lines
112 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -o nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
IFS=$'\n\t'
|
|
|
|
cd /app
|
|
./bin/setup
|
|
|
|
exec "$@"
|