9 lines
121 B
Bash
Executable File
9 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git clone https://github.com/basho/rebar.git rebar-tmp
|
|
cd rebar-tmp
|
|
make
|
|
cp rebar ..
|
|
cd ..
|
|
rm -rf rebar-tmp
|