From b3d7f26b41aa7d4b93e038ca431f7a814c9b545c Mon Sep 17 00:00:00 2001 From: Michael Schramm Date: Tue, 9 Jun 2020 17:19:25 +0200 Subject: [PATCH] show current ref in heroku --- scripts/heroku/prebuild.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/heroku/prebuild.sh b/scripts/heroku/prebuild.sh index aafaf4b6..f280b8dd 100755 --- a/scripts/heroku/prebuild.sh +++ b/scripts/heroku/prebuild.sh @@ -3,6 +3,11 @@ echo "Fetch Submodules" git clone --depth 1 https://github.com/ohmyform/ui ui git clone --depth 1 https://github.com/ohmyform/api api +echo "UI ref is" +git --git-dir=ui/.git rev-parse HEAD +echo "API ref is" +git --git-dir=api/.git rev-parse HEAD + echo "Install UI" yarn --cwd ui install --frozen-lockfile