mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-02 10:06:14 +00:00
10 lines
259 B
Bash
Executable File
10 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
#script function:1.cd libsdk and compile libcfs.so
|
|
# 2.put libcfs.so under the src/main/resource directory
|
|
# 3.package jar
|
|
cd ../libsdk
|
|
./build.sh
|
|
cp libcfs.so ../java/src/main/resources/
|
|
cd ../java
|
|
mvn clean package
|