Skip to content

Commit 6bea48e

Browse files
authored
update Makefile (#213)
* update Makefile * fix rename some repo * add go sum * del scss file
1 parent 160eb3d commit 6bea48e

File tree

1,244 files changed

+1261
-1304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,244 files changed

+1261
-1304
lines changed
-585 KB
Binary file not shown.

.gitbook/assets/leetcode.png

-105 KB
Binary file not shown.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ node_modules/
2020
/public
2121
.env.yml
2222
/python
23-
go.sum
2423
package-lock.json

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,14 @@ test-leetcode:
1616
@echo start test leetcode
1717
sh test.sh leetcode
1818
@echo end test leetcode
19-
19+
hugo:
20+
@echo start hugo
21+
hugo server
22+
@echo end hugo
23+
deploy:
24+
@echo start deploy
25+
git submodule update --init --recursive
26+
git pull
27+
hugo -D
28+
@echo end deploy
2029

cmd/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/kylesliu/awesome-golang-leetcode/cmd/leetcode"
5+
6+
"awesome-golang-algorithm/cmd/leetcode"
67
)
78

89
func main() {

cmd/sitemap/sitemap.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ package sitemap
22

33
import (
44
"fmt"
5-
"github.com/kylesliu/awesome-golang-leetcode/cmd/leetcode"
5+
6+
"github.com/kylesliu/awesome-golang-algorithm/cmd/leetcode"
67
)
78

89
type Config struct {

cmd/template/contributors/.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"projectName": "awesome-golang-leetcode",
2+
"projectName": "awesome-golang-algorithm",
33
"projectOwner": "kylesliu",
44
"repoType": "github",
55
"repoHost": "https://github.com",

cmd/template/solution/README.md

Lines changed: 1 addition & 1 deletion

cmd/tpl/.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"projectName": "awesome-golang-leetcode",
2+
"projectName": "awesome-golang-algorithm",
33
"projectOwner": "kylesliu",
44
"repoType": "github",
55
"repoHost": "https://github.com",

0 commit comments

Comments
 (0)