Skip to content

Commit

Permalink
fix regression with installing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuseteam committed May 10, 2022
1 parent a1f2f00 commit 5d97599
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lib/pkgfunc
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,12 @@ function pkgsetup(){
}

function fetch_desktop() {
if [[ ! -f "$1" ]]; then exit 0;fi
${SCRP_DIR}/desktop_trunc $1 > $2
echo "X-Ubuntu-Touch=true" >> $2
# if mirx flag
echo "X-Ubuntu-XMir-Enable=true" >> $2
if [[ -f "$1" ]]; then
${SCRP_DIR}/desktop_trunc $1 > $2
echo "X-Ubuntu-Touch=true" >> $2
# if mirx flag
echo "X-Ubuntu-XMir-Enable=true" >> $2
fi
}

function link_iconsdir() {
Expand Down

0 comments on commit 5d97599

Please sign in to comment.