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

Add skeleton of ugrade script

This commit is contained in:
Shane Kilkelly 2020-07-10 09:27:50 +01:00
parent 2235c6a4cc
commit c02de2313f

14
bin/upgrade Executable file
View file

@ -0,0 +1,14 @@
#! /usr/bin/env bash
set -euo pipefail
function usage() {
echo "Usage: bin/upgrade"
}
function __main__() {
echo ">> hi"
exit 0
}
__main__ "$@"