Skip to content

Commit 2bd96a5

Browse files
author
Joseph Saylor
committed
Fixing link existence check
1 parent 0e3f0c2 commit 2bd96a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sync-webui/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func main() {
5151
iferrExit(validatePaths(goWebuiPath, webuiPath))
5252
linkName := filepath.Join(goWebuiPath, "webui")
5353
// Exit if link already exists in the directory of the used go-webui version.
54-
if !dirExists(linkName) {
54+
if dirExists(linkName) {
5555
return
5656
}
5757

0 commit comments

Comments
 (0)