summarylogtreecommitdiffstats
path: root/tsac
diff options
context:
space:
mode:
authordevome2024-04-10 09:45:34 +0800
committerdevome2024-04-10 09:45:34 +0800
commit158973640865747b2037125bd331ae58b9d81bcb (patch)
tree81a4cd1527094c250108fcd99ac671d3b0e687ad /tsac
parent7ba4e0562937cf4f860e622d15c2e651f874a527 (diff)
downloadaur-158973640865747b2037125bd331ae58b9d81bcb.tar.gz
do not install to /opt
Diffstat (limited to 'tsac')
-rw-r--r--tsac8
1 files changed, 4 insertions, 4 deletions
diff --git a/tsac b/tsac
index ac06718c2445..8e6df7b86aea 100644
--- a/tsac
+++ b/tsac
@@ -10,9 +10,9 @@ if [[ $# -ge 3 && $1 != "--help" && $1 != "-h" ]]; then
exit 1
fi
- cd /opt/tsac || exit 2
- ./tsac $other_args "$input_file" "$output_file"
+ cd /usr/share/tsac || exit 2
+ /usr/lib/tsac/tsac $other_args "$input_file" "$output_file"
else
- cd /opt/tsac || exit 2
- ./tsac "$@"
+ cd /usr/share/tsac || exit 2
+ /usr/lib/tsac/tsac "$@"
fi