Arma 3 - Small Bug Fix

- Fixed RemoveDuplicates function adding an extra trailing semicolon if the input string is empty.
- Added Aussie Server Hosts as a credited contributor for help and ideas on the project.
This commit is contained in:
Red-Thirten
2021-07-13 23:24:28 -07:00
committed by GitHub
parent 4b47c04777
commit 577d18ce26

View File

@@ -2,7 +2,8 @@
## File: Pterodactyl Arma 3 Image - entrypoint.sh ## File: Pterodactyl Arma 3 Image - entrypoint.sh
## Author: David Wolfe (Red-Thirten) ## Author: David Wolfe (Red-Thirten)
## Date: 2021/07/11 ## Contributors: Aussie Server Hosts (https://aussieserverhosts.com/)
## Date: 2021/07/13
## License: MIT License ## License: MIT License
## === CONSTANTS === ## === CONSTANTS ===
@@ -143,7 +144,9 @@ function ModsLowercase {
# Removes duplicate items from a semicolon delimited string # Removes duplicate items from a semicolon delimited string
function RemoveDuplicates { #[Input: str - Output: printf of new str] function RemoveDuplicates { #[Input: str - Output: printf of new str]
echo $1 | sed -e 's/;/\n/g' | sort -u | xargs printf '%s;' if [[ -n $1 ]]; then # If nothing to compare, skip to prevent extra semicolon being returned
echo $1 | sed -e 's/;/\n/g' | sort -u | xargs printf '%s;'
fi
} }
# === ENTRYPOINT START === # === ENTRYPOINT START ===