summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorosm0sis <osm0sis@outlook.com>2019-08-04 01:16:54 -0300
committerosm0sis <osm0sis@outlook.com>2019-08-04 01:16:54 -0300
commitf3f80014cc4f053a8ed7230136bee83cd42644d1 (patch)
tree0e2f0ec7e91d2f9c0aaf00fa81b7e94df60c1490 /tools
parent958b2c873ab36f52c4830b3bb224c3753d5c47cd (diff)
AK3+Backend: fix multi-line abort outputs
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ak3-core.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ak3-core.sh b/tools/ak3-core.sh
index e1ce1f7..97b0e2e 100755
--- a/tools/ak3-core.sh
+++ b/tools/ak3-core.sh
@@ -22,7 +22,7 @@ ui_print() {
# abort ["<text>" [...]]
abort() {
- ui_print " " "$*";
+ ui_print " " "$@";
exit 1;
}