mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 15:28:06 +02:00
9 lines
118 B
Bash
Executable file
9 lines
118 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
function __main__() {
|
|
exec ./bin/docker-compose stop "$@"
|
|
}
|
|
|
|
__main__ "$@"
|