Fix default settings for deploy (#2242)

This commit is contained in:
Jade
2025-12-15 00:55:38 +08:00
committed by GitHub
parent 07affd4fe3
commit ff69ddc247

View File

@@ -93,12 +93,12 @@ deploy {
if (project.hasProperty('tgtUser')) {
user = tgtUser
} else {
user = "pi"
user = "photon"
}
if (project.hasProperty('tgtPw')) {
password = tgtPw
} else {
password = "raspberry"
password = "vision"
}
}
}