- Removed main Makefile - Fixed wording in README - Altered build script - Fixed clean script
9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/.."
|
|
cd "${root_dir}"
|
|
pushd "${root_dir}"/libbitcoind
|
|
make clean
|
|
popd
|
|
node-pre-gyp clean
|