1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 23:38:06 +02:00
overleaf-toolkit/bin/stop

10 lines
118 B
Text
Raw Permalink Normal View History

2020-06-04 16:21:25 +01:00
#! /usr/bin/env bash
set -euo pipefail
function __main__() {
2020-06-05 11:06:18 +01:00
exec ./bin/docker-compose stop "$@"
2020-06-04 16:21:25 +01:00
}
__main__ "$@"