We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c37e7e commit cd323d4Copy full SHA for cd323d4
Makefile
@@ -3,7 +3,8 @@ STACK_PATH:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
3
.PHONY: install
4
install:
5
@echo "Installing OpenCodeCo stack!"
6
- @sudo sed 's#STACK_PATH=$$(pwd)#STACK_PATH=$(STACK_PATH)#g' ./stack > /usr/local/bin/stack
+ @sed 's#STACK_PATH=$$(pwd)#STACK_PATH=$(STACK_PATH)#g' ./stack > /tmp/stack
7
+ @sudo mv /tmp/stack /usr/local/bin/stack
8
@sudo chmod +x /usr/local/bin/stack
9
@echo "Creating network..."
10
@stack network
0 commit comments