Skip to content

Commit 6a1dd5c

Browse files
committedMar 6, 2018
Refactored go code to be more
1 parent 8aadfaf commit 6a1dd5c

10 files changed

+7
-10
lines changed
 

‎src/commands.go ‎commands.go

File renamed without changes.

‎src/main.go ‎main.go

File renamed without changes.

‎makefile

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
path := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
22

3-
all: src/main.go
4-
cd src; go build -o ../dist/redditfs.exe
3+
all: main.go
4+
go build
55

6-
build: src/main.go
7-
cd src; go build -o ../dist/redditfs.exe
6+
build: main.go
7+
go build
88

99
clean:
10-
$(RM) ./dist/redditfs.exe
10+
$(RM) redditfs
1111

1212
install:
1313
go get -u golang.org/x/sys/...
@@ -20,10 +20,7 @@ install:
2020
go get github.com/monochromegane/go-gitignore
2121

2222
run: dist/redditfs.exe
23-
./dist/redditfs.exe
23+
./redditfs
2424

2525
link: dist/redditfs.exe
26-
sudo ln -s $(path)/dist/redditfs.exe /bin/redditfs
27-
28-
test:
29-
cd src; go test
26+
sudo ln -s $(path)redditfs /bin/redditfs

‎src/manifest.go ‎manifest.go

File renamed without changes.

‎src/pull.go ‎pull.go

File renamed without changes.

‎src/push.go ‎push.go

File renamed without changes.

‎redditfs

8 MB
Binary file not shown.

‎src/search.go ‎search.go

File renamed without changes.

‎src/session.go ‎session.go

File renamed without changes.

‎src/utils.go ‎utils.go

File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.