mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 23:38:06 +02:00
10 lines
119 B
Text
10 lines
119 B
Text
|
#! /usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
function __main__() {
|
||
|
exec ./bin/docker-compose start "$@"
|
||
|
}
|
||
|
|
||
|
__main__ "$@"
|