app_deploy: fix typo preventing repo clients from loading

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2021-07-08 11:58:11 -04:00
parent d60b852b27
commit 211c7e70e1
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ CHANNEL_TO_TYPE = {
TYPE_TO_CHANNEL = {
"zip": "stable",
"zip_beta": "beta",
"dev": "git_repo"
"git_repo": "dev"
}
class AppDeploy(BaseDeploy):