#!/usr/bin/env bash set -eux # -e: exit on error, -u: error on undefined var, -x: print each command echo "๐Ÿ—๏ธ postBuild starting at $(date)" # (Re-install LFS just in case) git lfs install # Clone the model repo into a folder named โ€œmodelโ€ git clone --depth 1 https://huggingface.co/CodCodingCode/llama-3.1-8b-clinical model cd model echo "๐Ÿ—๏ธ Running git lfs pull in $(pwd)" git lfs pull echo "โœ… postBuild finished at $(date)"