Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
rename pcc to gemfire
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmeiliao committed Mar 27, 2020
1 parent f762d2d commit 68bf065
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
go build -o ./pcc ./cmd/main
go build -o ./gemfire ./cmd/main

echo "Build complete!"

Expand Down
12 changes: 6 additions & 6 deletions releases/generateBinaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ if [ ! -d "./linux64" ]; then
mkdir ./linux64
fi
cd linux64 || exit 1
env GOOS=linux GOARCH=amd64 go build -o ./pcc ../../cmd/main
md5 ./pcc >md5.txt
env GOOS=linux GOARCH=amd64 go build -o ./gemfire ../../cmd/main
md5 ./gemfire >md5.txt
echo "Built linux executable"

if [ ! -d "../osx" ]; then
mkdir ../osx
fi
cd ../osx || exit 1
env GOOS=darwin GOARCH=amd64 go build -o ./pcc ../../cmd/main
md5 ./pcc >md5.txt
env GOOS=darwin GOARCH=amd64 go build -o ./gemfire ../../cmd/main
md5 ./gemfire >md5.txt
echo "Built darwin executable"

if [ ! -d "../win64" ]; then
mkdir ../win64
fi
cd ../win64 || exit 1
env GOOS=windows GOARCH=amd64 go build -o ./pcc.exe ../../cmd/main
md5 ./pcc.exe >md5.txt
env GOOS=windows GOARCH=amd64 go build -o ./gemfire.exe ../../cmd/main
md5 ./gemfire.exe >md5.txt
echo "Built windows executable"

0 comments on commit 68bf065

Please sign in to comment.