Skip to content

Commit

Permalink
AppImage: Fixed ability to open paths with spaces from the CLI
Browse files Browse the repository at this point in the history
The check whether the file existed was missing quotes.

Closes #3914
  • Loading branch information
bjorn committed Mar 21, 2024
1 parent 45746fc commit de5373a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit de5373a

Please sign in to comment.