Skip to content

Commit 4ee593f

Browse files
authored
Update flattool
Rework flattool export so that it complies with shellcheck by surrounding it in quotes. This makes it output on multiple lines, so `tr` is piped to so that it becomes one line
1 parent a9a732f commit 4ee593f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flattool

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: GPL-3.0-only
33

44
# Settings and stuff, 'as' stands for App Setting. LastUpdateCheck must be 10 digits
5-
asFirstRun="true"
5+
asFirstRun="false"
66
asLastUpdateCheck="0000000000"
77
asAutoCheckUpdate="false"
88

@@ -461,7 +461,7 @@ case "$subcommand" in
461461
;;
462462
export)
463463
checkArgLength 0 0 "$@"
464-
echo flatpak install $(flatpak list --columns=application)
464+
echo flatpak install "$(flatpak list --columns=application | tr '\n' ' ')"
465465
;;
466466
help)
467467
printMasterHelp

0 commit comments

Comments
 (0)