Merge pull request #16 from Akilan1999/make-install-issue

fixed command issue in MakeFile
This commit is contained in:
Akilan Selvacoumar
2021-06-06 07:46:28 +04:00
committed by GitHub

View File

@@ -4,7 +4,7 @@ install:
go build -o p2prc go build -o p2prc
echo '# Paths for p2p rendering and computation' >> ~/.bashrc echo '# Paths for p2p rendering and computation' >> ~/.bashrc
echo 'export P2PRC=${PWD}' >> ~/.bashrc echo 'export P2PRC=${PWD}' >> ~/.bashrc
echo 'export path=${PWD}:$${PATH}' >> ~/.bashrc echo 'export PATH=${PWD}:$${PATH}' >> ~/.bashrc
source ~/.bashrc source ~/.bashrc
./p2prc --SetDefaultConfig ./p2prc --SetDefaultConfig
@@ -13,7 +13,7 @@ build:
go build -o p2prc go build -o p2prc
config: config:
./p2p-rendering-computation --SetDefaultConfig ./p2prc --SetDefaultConfig
run: run:
go run main.go go run main.go