Skip to content

Commit

Permalink
Merge pull request beeware#788 from freakboy3742/upgrade-rcedit
Browse files Browse the repository at this point in the history
Make RCEdit upgradable.
  • Loading branch information
freakboy3742 authored Jul 14, 2022
2 parents 1312ad1 + 1cc39ae commit 4bdfdc1
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
1 change: 1 addition & 0 deletions changes/787.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ensure that RCEdit can be managed and upgraded.
3 changes: 2 additions & 1 deletion src/briefcase/commands/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from briefcase.integrations.android_sdk import AndroidSDK
from briefcase.integrations.java import JDK
from briefcase.integrations.linuxdeploy import LinuxDeploy
from briefcase.integrations.rcedit import RCEdit
from briefcase.integrations.wix import WiX

from .base import BaseCommand
Expand All @@ -18,7 +19,7 @@ class UpgradeCommand(BaseCommand):

def __init__(self, *args, **options):
super().__init__(*args, **options)
self.sdks = [AndroidSDK, LinuxDeploy, JDK, WiX]
self.sdks = [AndroidSDK, LinuxDeploy, JDK, WiX, RCEdit]

@property
def platform(self):
Expand Down
28 changes: 26 additions & 2 deletions src/briefcase/integrations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
from . import android_sdk, git, java, xcode
from . import (
android_sdk,
cookiecutter,
docker,
git,
java,
linuxdeploy,
rcedit,
subprocess,
visualstudio,
wix,
xcode,
)

__all__ = ["android_sdk", "git", "java", "xcode"]
__all__ = [
"android_sdk",
"cookiecutter",
"docker",
"git",
"java",
"linuxdeploy",
"rcedit",
"subprocess",
"visualstudio",
"wix",
"xcode",
]

0 comments on commit 4bdfdc1

Please sign in to comment.