Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AppImage: Fixed ability to open paths with spaces from the CLI #3915

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
* Fixed possible crash after a scripted tool disappears while active
* Fixed updating of used tilesets after resizing map (#3884)
* Fixed alignment of shortcuts in action search
* AppImage: Fixed ability to open paths with spaces from the CLI (#3914)
* AppImage: Updated to Sentry 0.6.7

### Tiled 1.10.2 (4 August 2023)
Expand Down
2 changes: 1 addition & 1 deletion dist/linux/AppRun
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ my_help() {
echo "Tiled help:"
}

if [ -n ${1} ]
if [ -n "${1}" ]
then
case ${1} in
terraingenerator)
Expand Down