19 lines
97 B
Bash
Executable File
19 lines
97 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# build redis script
|
|
#
|
|
|
|
cd deps
|
|
|
|
ls -alh
|
|
|
|
cd ../
|
|
|
|
make distclean
|
|
|
|
make
|
|
|
|
|
|
|