Skip to content

Commit

Permalink
Fix problem in cache if not have translation
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbruno committed Feb 18, 2024
1 parent 34f941b commit 8cec8b4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions usr/share/biglinux/bigstore-cli/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/'

0 comments on commit 8cec8b4

Please sign in to comment.