From a46a7983c5f8baa44446db96c13d0cb8ff5729d9 Mon Sep 17 00:00:00 2001 From: Akilan Selvacoumar Date: Sun, 6 Jun 2021 07:07:47 +0400 Subject: [PATCH] fixed command issue in MakeFile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 28bd493..9bca9fc 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ install: go build -o p2prc echo '# Paths for p2p rendering and computation' >> ~/.bashrc echo 'export P2PRC=${PWD}' >> ~/.bashrc - echo 'export path=${PWD}:$${PATH}' >> ~/.bashrc + echo 'export PATH=${PWD}:$${PATH}' >> ~/.bashrc source ~/.bashrc ./p2prc --SetDefaultConfig @@ -13,7 +13,7 @@ build: go build -o p2prc config: - ./p2p-rendering-computation --SetDefaultConfig + ./p2prc --SetDefaultConfig run: go run main.go