10 lines
177 B
Bash
Executable file
10 lines
177 B
Bash
Executable file
#!/bin/bash
|
|
DIR=${PWD}
|
|
mkdir ${PWD}/tmp
|
|
cd tmp
|
|
git clone ssh://git@git.glyphs.tech:222/taproot-tech/docker-devtools.git
|
|
cd docker-devtools/ch32
|
|
ls
|
|
./build.sh
|
|
cd $DIR
|
|
rm -rf tmp
|