From 8cec8b468830b57c0dd4a7c5278fcfa9bd1531c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Gon=C3=A7alves?= Date: Sat, 17 Feb 2024 23:06:06 -0300 Subject: [PATCH] Fix problem in cache if not have translation --- usr/share/biglinux/bigstore-cli/config.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/usr/share/biglinux/bigstore-cli/config.sh b/usr/share/biglinux/bigstore-cli/config.sh index fb5000d..01661f1 100755 --- a/usr/share/biglinux/bigstore-cli/config.sh +++ b/usr/share/biglinux/bigstore-cli/config.sh @@ -25,13 +25,18 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -PATH="$PATH:/usr/share/biglinux/bigstore-cli" +big_store_folder="/usr/share/biglinux/bigstore-cli" + +PATH="$PATH:$big_store_folder" cacheFolder='/var/tmp/pamac/' +localeFolder="$big_store_folder/locale" +awk_folder="$big_store_folder/awk" +jq_folder="$big_store_folder/jq" + cacheFolderHome="$HOME/.cache/bigstore-cli/" if [[ ! -d $cacheFolderHome ]]; then mkdir -p "$cacheFolderHome" fi -localeFolder='/usr/share/biglinux/bigstore-cli/locale/'