summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJYPDWhite2021-06-07 20:04:01 +0200
committerJYPDWhite2021-06-07 20:04:01 +0200
commit5630ccb1c79e2da1c71895d2e5d8d01bbe9a693e (patch)
tree3eb021e5e3c0cd3cecf361807c905b38949ffe95
parentbefac0cc2316932c4902376e411e8cab94c4747c (diff)
downloadaur-5630ccb1c79e2da1c71895d2e5d8d01bbe9a693e.tar.gz
removed debug lines
-rw-r--r--PKGBUILD5
1 files changed, 0 insertions, 5 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 4df7aabef9cd..32268d15ff5f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -31,15 +31,10 @@ source=("https://download.documentfoundation.org/libreoffice/stable/${pkgver}/rp
prepare() { ## prepare function
## install optional language & help packs (queries user)
-msg "Debug: 1";
curl "http://download.documentfoundation.org/libreoffice/stable/${pkgver}/rpm/${arch_mod}/" -o index.html; ## get index.html
-msg "Debug: 2";
declare -ar opt_pak=('langpack' 'helppack'); ## declare optional extensions
-msg "Debug: 3";
for a in ${opt_pak[@]}; do ## loop for all optional extensions
- msg "Debug: 4";
read -p "Do you want to install additional ${a} (Y/y/N/n)?" opt_ans;
- msg "Debug: 5";
case $opt_ans in ## evaluate the answer
Y|y)
echo "Which ${a} do you want to install?";