summaryrefslogtreecommitdiffstats
path: root/ship/src/get_repo
blob: 5476e650e9bab5a115123bde9b01092ec37d2a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#@info
#@strict
#@include punani
# Can be overwritten before install

KREBSDIR=${KREBSDIR:-/krebs}
( is_root || ! test "$KREBSDIR" = "/krebs" ) || die "not running as root, stuff may not work. change KREBSDIR env to bootstrap somewhere else!"; 

info "installing git to clone repo"
punani install git

[ -e "$KREBSDIR" ] && die "krebs dir already exists"

git clone --depth 1 https://github.com/krebscode/painload.git "$KREBSDIR" || die "cloning failed :(" 

cd $KREBSDIR || die "cannot change into $KREBSDIR folder:(" ;

info "installing make"
punani install make

info "have a nice day"