forked from go-modules-by-example/index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contributing.sh
37 lines (27 loc) · 1.06 KB
/
contributing.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env bash
# **START**
export GOPATH=$HOME
export PATH=$GOPATH/bin:$PATH
echo "machine github.com login $GITHUB_USERNAME password $GITHUB_PAT" >> $HOME/.netrc
echo "" >> $HOME/.netrc
echo "machine api.github.com login $GITHUB_USERNAME password $GITHUB_PAT" >> $HOME/.netrc
git config --global user.email "[email protected]"
git config --global user.name "$GITHUB_USERNAME"
git config --global advice.detachedHead false
git config --global push.default current
# block: docker pull
docker pull golang
# block: clone
git clone https://github.com/go-modules-by-example/index
cd index
# behind the scenes we switch to self in order that we
# utilise the current version, not the latest remote commit
cd /self
export egrun="gobin -m -run myitcv.io/cmd/egrunner -df -v=/tmp:/tmp -out std ./000_simple_example/script.sh"
# block: echo egrun
echo "\$ $(echo $egrun | sed -e 's+ -df -v=/tmp:/tmp++')"
# egrunner_envsubst: +egrun
# block: egrun
$egrun | head -n -1
# block: mdrun
gobin -m -run myitcv.io/cmd/mdreplace -w -long -online ./000_simple_example/README.md