crystal-builder/setup/step4.sh
2023-10-27 09:01:37 +02:00

14 lines
252 B
Bash

#!/bin/sh
set -eu
echo "==== STEP 4 : Clone the repository"
echo "---- Installing prerequisites"
apt-get install -y \
git
echo "---- Git clone"
rm -fr /crystal/src
git clone https://github.com/crystal-lang/crystal /crystal/src
echo "---- SUCCESS"