changed cligen repo from olofhagsand/cligen to clicon/cligen

This commit is contained in:
Olof hagsand 2020-06-21 15:57:43 +02:00
parent 3af184c655
commit 1597bd303c
12 changed files with 17 additions and 16 deletions

View file

@ -36,7 +36,7 @@ ssh -t $h "(cd /tmp; chmod 750 $SCRIPTS)"
# pull git changes and build cligen
ssh -t $h "test -d src || mkdir src"
ssh -t $h "test -d src/cligen || (cd src;git clone https://github.com/olofhagsand/cligen.git)"
ssh -t $h "test -d src/cligen || (cd src;git clone https://github.com/clicon/cligen.git)"
ssh -t $h "(cd src/cligen;git pull)"
ssh -t $h "(cd src/cligen;./configure)"
ssh -t $h "(cd src/cligen; /tmp/cligen-mk.sh)"

View file

@ -1,5 +1,5 @@
#!/bin/sh
# Travis pre-config script.
# Clone and install CLIgen (needed for clixon configure and make)
git clone https://github.com/olofhagsand/cligen.git
git clone https://github.com/clicon/cligen.git
(cd cligen && ./configure && make && sudo make install)

View file

@ -155,7 +155,7 @@ fi
# cligen
test -d src || mkdir src
test -d src/cligen || (cd src;git clone https://github.com/olofhagsand/cligen.git)
test -d src/cligen || (cd src;git clone https://github.com/clicon/cligen.git)
cd src/cligen
git pull