16 lines
125 B
Bash
Executable File
16 lines
125 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# build redis script
|
|
#
|
|
|
|
make distclean
|
|
|
|
cd deps
|
|
make hiredis linenoise lua jemalloc
|
|
cd ../src
|
|
make
|
|
|
|
|
|
|