Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
refactor: update build script commands
Browse files Browse the repository at this point in the history
  • Loading branch information
joelgomes1994 committed Apr 3, 2022
1 parent 10e3a75 commit 8cb6ef7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ def export(_target=None):


operators = {
"windows": lambda: build("windows"),
"linux": lambda: build("linux"),
"minify": lambda: minify(),
"clean": lambda: clean(),
"export": lambda: export(),
"export_windows": lambda: export("Windows"),
"export_linux": lambda: export("Linux"),
"launcher_windows": lambda: build("windows"),
"launcher_linux": lambda: build("linux"),
"minify": lambda: minify(),
} # type: dict[str, object]


Expand Down

0 comments on commit 8cb6ef7

Please sign in to comment.