Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 5b26278

Browse files
Merge pull request #2 from asunlabs/bugfix/filePath
Bugfix/file path
2 parents d23d77e + 06231c8 commit 5b26278

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
.env.production
44
.env.development
55
.env.test
6+
owlly-for-mac
7+
owlly-for-mac-m1
8+
owlly.exe
69

710
# Pre-feature
811
src

owlly.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func getEnvList() []string {
4545
func registerEnvs() {
4646
for _, v := range getEnvList() {
4747
wd, _ := os.Getwd()
48-
filePath := strings.Join([]string{wd, "\\", v}, "")
48+
filePath := strings.Join([]string{wd, "/", v}, "")
4949

5050
wErr := watcher.Add(filePath)
5151
nilChecker(wErr)
@@ -78,7 +78,7 @@ func updateEnvs() {
7878
nilChecker(rErr)
7979

8080
wrapDirName := "config"
81-
wrapDirPath := strings.Join([]string{wd, "\\", wrapDirName, "\\"}, "")
81+
wrapDirPath := strings.Join([]string{wd, "/", wrapDirName, "/"}, "")
8282
wrapEnvName := strings.Join([]string{v, ".", wrapDirName}, "")
8383
wrapEnvFile := strings.Join([]string{wrapDirPath, wrapEnvName}, "")
8484

@@ -90,7 +90,7 @@ func updateEnvs() {
9090
func cleanupEnvs() {
9191
wd, _ := os.Getwd()
9292
for _, v := range getEnvList() {
93-
fullPathForWrapEnv := strings.Join([]string{wd, "\\", "config", "\\", v, ".config"}, "")
93+
fullPathForWrapEnv := strings.Join([]string{wd, "/", "config", "/", v, ".config"}, "")
9494
_, sErr := os.Stat(fullPathForWrapEnv)
9595

9696
if ok := os.IsExist(sErr); ok {
@@ -120,7 +120,7 @@ func sendSlackDM() {
120120

121121
for _, v := range getEnvList() {
122122
if isDone := isUpdateFinished(); isDone[v] {
123-
fullPathForWrapEnv := strings.Join([]string{wd, "\\", "config", "\\", v, ".config"}, "")
123+
fullPathForWrapEnv := strings.Join([]string{wd, "/", "config", "/", v, ".config"}, "")
124124
wrapEnvName := strings.Join([]string{v, ".config"}, "")
125125

126126
envStringForWrapEnv = convertEnvMapToString(fullPathForWrapEnv, wrapEnvName)
@@ -137,7 +137,7 @@ func isUpdateFinished() map[string]bool {
137137

138138
for _, v := range getEnvList() {
139139
wd, _ := os.Getwd()
140-
fullPath := strings.Join([]string{wd, "\\", v}, "")
140+
fullPath := strings.Join([]string{wd, "/", v}, "")
141141

142142
_data, _rErr := os.ReadFile(fullPath)
143143
nilChecker(_rErr)

0 commit comments

Comments
 (0)