File: update.rst

package info (click to toggle)
python-briefcase 0.3.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,596 kB
  • sloc: python: 62,519; makefile: 60
file content (64 lines) | stat: -rw-r--r-- 1,472 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
======
update
======

While you're developing an application, you may need to rapidly iterate on the
code, making small changes and then re-building. The update command applies
any changes you've made to your code to the packaged application code.

It will *not* update requirements or installer resources unless specifically
requested.

Usage
=====

To repackage your application's code for the current platform's default output
format:

.. code-block:: console

    $ briefcase update

To repackage your application's code for a different platform:

.. code-block:: console

    $ briefcase update <platform>

To repackage your application's code for a specific output format:

.. code-block:: console

    $ briefcase update <platform> <output format>

Options
=======

The following options can be provided at the command line.

``-a <app name>`` / ``--app <app name>``
----------------------------------------

Run a specific application target in your project. This argument is only
required if your project contains more than one application target. The app
name specified should be the machine-readable package name for the app.

``-r`` / ``--update-requirements``
----------------------------------

Update application requirements.

``--update-resources``
----------------------

Update application resources such as icons.

``--update-support``
--------------------

Update application support package.

``--update-stub``
-----------------

Update stub binary.