crystal-builder/setup/step4.sh

15 lines
252 B
Bash
Raw Normal View History

2023-10-27 07:01:37 +00:00
#!/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"