15 lines
252 B
Bash
15 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"
|