diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2023-05-09 01:13:41 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-09 06:36:30 +0200 |
commit | 71671e0921e2d7a0f6d36f92a2d455953b944f51 (patch) | |
tree | 15ce2415277c3c33371ac5e5ee351d72f739d889 /Ports/.port_include.sh | |
parent | dd2ca56ee4cf8a57c2cb5998e1cc35a77c3b292d (diff) | |
download | serenity-71671e0921e2d7a0f6d36f92a2d455953b944f51.zip |
Ports: Alphabetize commands in `.port_include.sh`
Also remove a stray newline.
Diffstat (limited to 'Ports/.port_include.sh')
-rwxr-xr-x | Ports/.port_include.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Ports/.port_include.sh b/Ports/.port_include.sh index 076b729e38..08dfdeb3cf 100755 --- a/Ports/.port_include.sh +++ b/Ports/.port_include.sh @@ -115,7 +115,6 @@ else PORT_BUILD_DIR="${SERENITY_BUILD_DIR}/Ports/${port}" fi - mkdir -p "${PORT_BUILD_DIR}" cd "${PORT_BUILD_DIR}" @@ -894,7 +893,7 @@ parse_arguments() { return fi case "$1" in - fetch|patch|shell|configure|build|install|installdepends|clean|clean_dist|clean_all|uninstall|showproperty|generate_patch_readme) + build|clean|clean_all|clean_dist|configure|fetch|generate_patch_readme|install|installdepends|patch|shell|showproperty|uninstall) method=$1 shift do_${method} "$@" @@ -924,7 +923,7 @@ parse_arguments() { do_dev ;; *) - >&2 echo "I don't understand $1! Supported arguments: fetch, patch, configure, build, install, installdepends, interactive, clean, clean_dist, clean_all, uninstall, showproperty, generate_patch_readme, dev." + >&2 echo "I don't understand $1! Supported arguments: build, clean, clean_all, clean_dist, configure, dev, fetch, generate_patch_readme, install, installdepends, interactive, patch, shell, showproperty, uninstall." exit 1 ;; esac |